美文网首页
Spring Boot启动失败 BeanDefinitionSt

Spring Boot启动失败 BeanDefinitionSt

作者: ant_1024 | 来源:发表于2018-10-14 22:59 被阅读57次

    初学Spring Boot,启动时失败:

    ** WARNING ** :Your ApplicationContext is unlikely to start due to a @ComponentScan of the default package.

    org.springframework.beans.factory.BeanDefinitionStoreException: Failed to read candidate component class: URL [jar:file:/C:/Users/cmc/.m2/repository/org/springframework/boot/spring-boot-autoconfigure/1.2.5.RELEASE/spring-boot-autoconfigure-1.2.5.RELEASE.jar!/org/springframework/boot/autoconfigure/jdbc/DataSourceAutoConfigurationJdbcTemplateConfiguration.class]; nested exception is java.lang.IllegalStateException: Could not evaluate condition on org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfigurationJdbcTemplateConfiguration due to internal class not found. This can happen if you are @ComponentScanning a springframework package (e.g. if you put a @ComponentScan in the default package by mistake)

    CSDN小伙伴提出的解决方案:


    查了半天终于才stack overflow上看到了解决方案,链接如下:stack overflow
    是因为application.java 文件不能直接放在main/java文件夹下,必须要建一个包把他放进去

    官方文档有一小段说明:

    14.1 Using the “default” Package

    When a class does not include a package declaration, it is considered to be in the “default package”. The use of the “default package” is generally discouraged and should be avoided. It can cause particular problems for Spring Boot applications that use the @ComponentScan, @EntityScan, or @SpringBootApplicationannotations, since every class from every jar is read.

    记录一下学习中遇到的问题踩过的坑

    作者:chaofansea
    来源:CSDN
    原文:https://blog.csdn.net/chaofansea/article/details/79025983?utm_source=copy
    版权声明:本文为博主原创文章,转载请附上博文链接!

    相关文章

      网友评论

          本文标题:Spring Boot启动失败 BeanDefinitionSt

          本文链接:https://www.haomeiwen.com/subject/azfxzftx.html