您的位置:首页 > 编程语言 > Java开发

Spring Boot启动失败 BeanDefinitionStoreException

2018-01-10 17:02 363 查看
初学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/DataSourceAutoConfiguration$JdbcTemplateConfiguration.class];
nested exception is java.lang.IllegalStateException: Could not evaluate condition on org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration$JdbcTemplateConfiguration 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 
@SpringBootApplication
annotations,
since every class from every jar is read.

记录一下学习中遇到的问题踩过的坑
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  Spring Boot
相关文章推荐