SpringBoot 부팅 실패 해결: ApplicationContext 시작 오류.

1301 단어 springBoot
오류 로그는 대체로 이렇다
  Error starting ApplicationContext. To display the auto-configuration report re-run your application with 'debug' enabled. 2018-08-05 10:56:04,870 ERROR [LoggingFailureAnalysisReporter.java:42] :    *************************** APPLICATION FAILED TO START ***************************   Description:   Cannot determine embedded database driver class for database type NONE   Action:   If you want an embedded database please put a supported one on the classpath. If you have database settings to be loaded from a particular profile you may need to active it (no profiles are currently active).   2018-08-05 10:56:04,874  INFO [AbstractConfig.java:450] :  [DUBBO] Run shutdown hook now., dubbo version: 2.5.3, current host: 127.0.0.1
해결 방법은 이 경로를 참조할 수 있습니다.https://blog.csdn.net/weixin_39220472/article/details/81429241
위쪽은 @SpringBootApplication 메모를 사용하여 제외됩니다.
또한 여기에 덧붙여서 다른 경우에도 이 문제가 발생할 수 있으니 참고하여 조사할 수 있다.
첫 번째 상황은pom입니다.xml에서 핫 배포 패키지를 가져오면 다음이 발생합니다.


    org.springframework.boot
    spring-boot-devtools
    true

이 부분을 주석할 수 있다.
두 번째 상황은 어떤 서비스 구현 클래스가 @Service 주석을 추가하지 않아서 발생한 것이므로 오류 알림에 따라 처리해야 한다

좋은 웹페이지 즐겨찾기