Caused by: org.springframework.beans.BeanInstantiationException:
Failed to instantiate [org.springframework.cloud.aws.core.env.stack.config.StackNameProvider]:
Factory method 'autoDetectingStackNameProvider' threw exception;
nested exception is java.lang.IllegalArgumentException: No valid instance id defined
Spring Cloud AWS 의 auto configure를 이용할때 위와 같은 에러가 날 수 있다.
이럴때는..
cloud:
aws:
stack:
auto: false
위와 같은 옵션을 추가해주자! 그러면 해결된다. 해당 옵션은 CloudFormation 구성을 하지 않는 옵션으로, CloudFormation과 stack 이 어떤 개념인지는 다음 번에 다루어 보겠다..
'개발 공부 기록하기 > 04. Spring & Spring Boot' 카테고리의 다른 글
Failed to connect to service endpoint (Warning) 해결 (0) | 2020.09.21 |
---|---|
There is no EC2 meta data available, because the application is not running in the EC2 environment 해결 (1) | 2020.09.19 |
Spring Boot Interceptor에서 권한 관리하기 I (HttpServletRequest getInputStream 여러번) (0) | 2020.03.18 |
Spring Boot SQL 보기 옵션 총 정리 (4) | 2019.07.30 |
Spring REST DOCS를 Spring Boot에 적용하기 (2) (0) | 2019.07.25 |