[SPRING] Spring Cloud AWS에서 Cloudform 사용 안 함
SPRINGSpring Cloud AWS에서 Cloudform 사용 안 함
스프링 클라우드 AWS를 사용하는 스프링 부팅 응용 프로그램에서 Cloudform을 비활성화하려면 어떻게합니까?
아마존에서 내 앱을 실행할 때 계속이 오류가 발생합니다.
...
Caused by: org.springframework.beans.BeanInstantiationException: Failed to instantiate [org.springframework.cloud.aws.core.env.stack.config.StackResourceRegistryFactoryBean]: Factory method 'stackResourceRegistryFactoryBean' threw exception; nested exception is com.amazonaws.AmazonServiceException: Stack for i-b5ce9e32 does not exist (Service: AmazonCloudFormation; Status Code: 400; Error Code: ValidationError; Request ID: 75b3076a-176d-11e6-90cc-b55a643dc6d6)
at org.springframework.beans.factory.support.SimpleInstantiationStrategy.instantiate(SimpleInstantiationStrategy.java:189)
at org.springframework.beans.factory.support.ConstructorResolver.instantiateUsingFactoryMethod(ConstructorResolver.java:588)
... 82 more
Caused by: com.amazonaws.AmazonServiceException: Stack for i-b5ce9e32 does not exist (Service: AmazonCloudFormation; Status Code: 400; Error Code: ValidationError; Request ID: 75b3076a-176d-11e6-90cc-b55a643dc6d6)
at com.amazonaws.http.AmazonHttpClient.handleErrorResponse(AmazonHttpClient.java:1389)
at com.amazonaws.http.AmazonHttpClient.executeOneRequest(AmazonHttpClient.java:902)
at com.amazonaws.http.AmazonHttpClient.executeHelper(AmazonHttpClient.ja
...
나는 cloudformation을 사용하고 싶지 않다. (적어도 현재로는.)
해결법
-
==============================
1.내 application.properties (spring boot) 파일에 다음 줄이 있습니다.
내 application.properties (spring boot) 파일에 다음 줄이 있습니다.
cloud.aws.stack.auto=false
공식 문서 : 4.4. Spring Boot의 CloudFormation 구성
from https://stackoverflow.com/questions/37161989/disable-cloudformation-in-spring-cloud-aws by cc-by-sa and MIT license
'SPRING' 카테고리의 다른 글
[SPRING] 최대 절전 모드 : 클래스에 적절한 생성자를 찾을 수 없음 - HQL (0) | 2019.05.06 |
---|---|
[SPRING] AspectJ와 Spring Boot에서 @Autowired 사용하기 (0) | 2019.05.06 |
[SPRING] 스프링 보안으로 OAuth 2.0에서 resourceId의 의미 (0) | 2019.05.06 |
[SPRING] 스윙은 스프링 부트 아래에서 헤드리스라고 생각하지만 스프링이나 일반 자바에서는 그렇지 않다고 생각하는 이유는 무엇입니까? (0) | 2019.05.06 |
[SPRING] Jersey 저지 - * 종속성이 추가 될 때 WebApplication 공급자가 존재하지 않습니다. (0) | 2019.05.06 |