springboot 시작 오류: "Error starting ApplicationContext. 조건을 표시하려면 re-run 응용 프로그램...

2491 단어
만약 잘못된 점이 있다면, 큰놈이 지적해 주십시오
개발 도구: IDEA
오보 내용
java.lang.Object.wait(Native Method)java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:143)com.mysql.jdbc.AbandonedConnectionCleanupThread.run(AbandonedConnectionCleanupThread.java:41)2019-02-14 14:58:00.326 INFO 17688 --- [ main] ConditionEvaluationReportLoggingListener :
Error starting ApplicationContext. To display the conditions report re-run your application with 'debug' enabled.
이 문장은 다음과 같은 뜻이다
(ApplicationContext를 시작하는 동안 오류가 발생했습니다. 조건 보고서를 표시하려면'디버깅'을 활성화한 상태에서 프로그램을 다시 실행하십시오.)
2019-02-14 14:58:00.428 ERROR 17688 --- [ main] o.s.b.d.LoggingFailureAnalysisReporter :
***************************APPLICATION FAILED TO START***************************
Description:
Field seanceRepository in com.meeting.service.SeanceService required a bean of type 'com.meeting.dao.SeanceRepository' that could not be found.
The injection point has the following annotations:- @org.springframework.beans.factory.annotation.Autowired(required=true)
Action:
Consider defining a bean of type 'com.meeting.dao.SeanceRepository' in your configuration.
Disconnected from the target VM, address: '127.0.0.1:55911', transport: 'socket'
Process finished with exit code 1
주요 오류:
 
 
 Error starting ApplicationContext. To display the conditions report re-run your application with 'debug' enabled.
(ApplicationContext를 시작하는 동안 오류가 발생했습니다. 조건 보고서를 표시하려면'디버깅'을 활성화한 상태에서 프로그램을 다시 실행하십시오.)
 
Consider defining a bean of type 'com.meeting.dao.SeanceRepository' in your configuration.

설정에서 "com.meeting.dao.seancerepository"형식의 bean을 정의하는 것을 고려합니다.
 
Field SeanceRepository in com.meeting.service.SeanceService required a bean of type 'com.meeting.dao.SeanceRepository' that could not be found.

com.meeting.service.Seance Service의 필드인 Seance Repository는 "com.meeting.dao.Seance Repository"의 bean 형식이 필요하지만 이 bean을 찾을 수 없습니다.
 
Seance Service에서 Seance Repository를 호출할 때 Seance Repository를 찾을 수 없습니다.
가장 간단한 해결 방법:
인터페이스에 @Mapper 메모를 추가합니다.
@Mapper
public interface UserMapper {
}

 
내가 해결책을 찾았을 때 큰 놈의 문장이 흰둥이에게 아주 적합하다는 것을 발견했다
https://www.cnblogs.com/nananana/p/9333917.html
컨베이어 도어
다음으로 전송:https://www.cnblogs.com/l2580/p/10375560.html

좋은 웹페이지 즐겨찾기