Spring Boot (3) --- 사용자 정의 spring boot starter 문제

1. "Failed to process import candidates for configuration class [com.simple.....]":
주요 원인:
맞 춤 형 starter 가 포장 할 때 (package) spring - boot - maven - plugin 을 사 용 했 기 때 문 입 니 다. 즉, 맞 춤 형 starter 프로젝트 의 pom. xml 에 다음 과 같은 설정 이 있 습 니 다.
org.springframework.boot spring-boot-maven-plugin
이렇게 나 오 는 가방 은 spring boot 의 포장 방식, Classpath 설정, 상대 디 렉 터 리, 자원 디 렉 터 리 등 입 니 다. 다른 spring boot 프로젝트 로 이 맞 춤 형 starter 의 jar 가방 을 사용 할 때 문제 가 있 습 니 다. 이 starter 가 일반적인 jar 가방 이 라 고 생각 하기 때 문 입 니 다.
이렇게 하면 너의 클래스 정 의 를 찾 을 수 없다.
해결 방법:
사용자 정의 starter 의 pom. xml 의 패키지 플러그 인 설정 을 삭제 하고 결 성 된 jar 패키지 방식 을 사용 하면 이 문 제 를 해결 할 수 있 습 니 다.
2.“ java.lang.IllegalArgumentException: Not an managed type: class .... ”
근본 원인:
JPA, 실체, Repository 류 는 spring boot 시작 파일 이 있 는 디 렉 터 리 가 아 닙 니 다. JPA 에서 이 실체, Repository 류 를 찾 을 수 없습니다.
해결 방법:
spring boot 의 시작 클래스 에 다음 주 해 를 추가 합 니 다.
@ EnableJpa Repositories ("com. example. reposcory") / / 검색 되 지 않 는 JPA 관련 실체 및 Repository 패키지 경로
@EntityScan("com.example.repository")
만약 당신 이 몬 고 의 JPA 를 사용 했다 면 상응하는 것 을 더 해 야 합 니 다.
@EnableMongoRepositories("com.example.mongo")@EnableJpaRepositories("com.example.repository")
@EntityScan("com.example.repository")

좋은 웹페이지 즐겨찾기