티스토리 뷰
Kotlin & JPA
[Kotlin] The bean 'errorDecoder', defined in class path resource, could not be registered. 에러 해결
Jane Kwon 2022. 1. 21. 17:28반응형
@FeignClient 어노테이션 사용 중에 아래와 같은 에러가 났다.
The bean 'errorDecoder', defined in class path resource [shop.janes/apis/config/PowerDnsConfig.class], could not be registered. A bean with that name has already been defined in class path resource [shop.janes/apis/config/FeignClientConfig.class] and overriding is disabled.
Action:
Consider renaming one of the beans or enabling overriding by setting spring.main.allow-bean-definition-overriding=true
application.yml 파일에 아래처럼 추가해주면 해결
spring:
main:
allow-bean-definition-overriding: true
반응형
'Kotlin & JPA' 카테고리의 다른 글
[Kotlin] Spring Boot - Gradle 환경에서의 Swagger 설정 (0) | 2022.06.17 |
---|---|
[Kotlin] 퓨니코드(Punycode)를 한글로 변환 (0) | 2022.03.02 |
[JPA] TransactionRequiredException: Executing an update/delete query 에러 해결 (0) | 2022.01.20 |
[Kotlin] Gradle json-simple 라이브러리 사용해서 json 파일 불러오기 (0) | 2022.01.18 |
[Kotlin] 한글 퓨니코드(Punycode)로 변환 (0) | 2022.01.18 |