springboot 시작 오류: "Error starting ApplicationContext. 조건을 표시하려면 re-run 응용 프로그램...
개발 도구: 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
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
다양한 언어의 JSONJSON은 Javascript 표기법을 사용하여 데이터 구조를 레이아웃하는 데이터 형식입니다. 그러나 Javascript가 코드에서 이러한 구조를 나타낼 수 있는 유일한 언어는 아닙니다. 저는 일반적으로 '객체'{}...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.