본문 바로가기
IT/Java

[Error] Failed to parse configuration class

by 성준하이 2024. 7. 23.
반응형

springboot run  기동시 아래와 같은 에러가 발생하였다.

 

Failed to parse configuration class [com.test.TestProjectApplication]

 

그리고 아래에 이어서 이렇게 나와있다.

Caused by: org.springframework.context.annotation.ConflictingBeanDefinitionException: Annotation-specified bean name 'testController' for bean class [com.test.restapitest.controller.TestController] conflicts with existing, non-compatible bean definition of same name and class [com.test.jpa.TestController]

 

TestController 라는 이름의 bean 이 2개이기 때문에 기동 오류가 났다.

 

해결법은 클래스 명을 변경해주면 해결이 된다.

 

그 밖에 다른 스프링 bean 중복 에러 관련해서는 아래 참고 포스팅 참고 바란다.


참고 포스팅

https://thenicesj.tistory.com/626

 

spring.main.allow-bean-definition-overriding=true 자바Bean중복 에러

spring boot 에서 아래와 같은 에러가 발생하였다. *************************** APPLICATION FAILED TO START *************************** Description: The bean 'commonFilter', defined in class path resource [/ApiConfig.class], could not be registe

thenicesj.tistory.com

 

반응형

'IT > Java' 카테고리의 다른 글

String / StringBuffer,StringBuilder 차이  (14) 2024.07.25
List와 ArrayList  (7) 2024.07.24
charAt 문자열 비교  (12) 2024.07.22
args 에 대해(arguments)  (7) 2024.07.19
[Error] Fatal error compiling: error: release version 21 not supported  (16) 2024.07.13

댓글