成人国产在线小视频_日韩寡妇人妻调教在线播放_色成人www永久在线观看_2018国产精品久久_亚洲欧美高清在线30p_亚洲少妇综合一区_黄色在线播放国产_亚洲另类技巧小说校园_国产主播xx日韩_a级毛片在线免费

資訊專欄INFORMATION COLUMN

Spring-boot 啟動(dòng)時(shí)碰到的錯(cuò)誤

894974231 / 3108人閱讀

摘要:錯(cuò)誤提示錯(cuò)誤概述最近學(xué)習(xí)的使用,寫了一個(gè)小,結(jié)果總是碰到這樣的錯(cuò)誤解決方法查了半天終于才上看到了解決方案,鏈接如下是因?yàn)槲募荒苤苯臃旁谖募A下,必須要建一個(gè)包把他放進(jìn)去

錯(cuò)誤提示
Your ApplicationContext is unlikely to start due to a @ComponentScan of the default package
錯(cuò)誤概述

最近學(xué)習(xí)springboot的使用,寫了一個(gè)小demo,結(jié)果總是碰到這樣的錯(cuò)誤:

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


2016-02-26 10:07:01.550  WARN 6112 --- [           main] ationConfigEmbeddedWebApplicationContext : Exception encountered during context initialization - cancelling refresh attempt

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)
    at org.springframework.context.annotation.ClassPathScanningCandidateComponentProvider.findCandidateComponents(ClassPathScanningCandidateComponentProvider.java:303)
    at org.springframework.context.annotation.ClassPathBeanDefinitionScanner.doScan(ClassPathBeanDefinitionScanner.java:248)
    at org.springframework.context.annotation.ComponentScanAnnotationParser.parse(ComponentScanAnnotationParser.java:140)
    at org.springframework.context.annotation.ConfigurationClassParser.doProcessConfigurationClass(ConfigurationClassParser.java:266)
    at org.springframework.context.annotation.ConfigurationClassParser.processConfigurationClass(ConfigurationClassParser.java:230)
    at org.springframework.context.annotation.ConfigurationClassParser.parse(ConfigurationClassParser.java:197)
    at org.springframework.context.annotation.ConfigurationClassParser.parse(ConfigurationClassParser.java:166)
    at org.springframework.context.annotation.ConfigurationClassPostProcessor.processConfigBeanDefinitions(ConfigurationClassPostProcessor.java:306)
    at org.springframework.context.annotation.ConfigurationClassPostProcessor.postProcessBeanDefinitionRegistry(ConfigurationClassPostProcessor.java:239)
    at org.springframework.context.support.PostProcessorRegistrationDelegate.invokeBeanDefinitionRegistryPostProcessors(PostProcessorRegistrationDelegate.java:254)
    at org.springframework.context.support.PostProcessorRegistrationDelegate.invokeBeanFactoryPostProcessors(PostProcessorRegistrationDelegate.java:94)
    ...
解決方法

查了半天終于才stack overflow上看到了解決方案,鏈接如下:stack overflow
是因?yàn)閍pplication.java 文件不能直接放在main/java文件夾下,必須要建一個(gè)包把他放進(jìn)去

文章版權(quán)歸作者所有,未經(jīng)允許請勿轉(zhuǎn)載,若此文章存在違規(guī)行為,您可以聯(lián)系管理員刪除。

轉(zhuǎn)載請注明本文地址:http://systransis.cn/yun/65542.html

相關(guān)文章

  • Spring-Boot學(xué)習(xí)筆記

    摘要:學(xué)習(xí)筆記使用很容易創(chuàng)建一個(gè)獨(dú)立運(yùn)行運(yùn)行內(nèi)嵌容器準(zhǔn)生產(chǎn)級別的基于框架的項(xiàng)目,使用你可以不用或者只需要很少的配置。異常消息如果這個(gè)錯(cuò)誤是由異常引起的。錯(cuò)誤發(fā)生時(shí)請求的路徑。 Spring-Boot 1.5 學(xué)習(xí)筆記 使用Spring Boot很容易創(chuàng)建一個(gè)獨(dú)立運(yùn)行(運(yùn)行jar,內(nèi)嵌Servlet容器)、準(zhǔn)生產(chǎn)級別的基于Spring框架的項(xiàng)目,使用Spring Boot你可以不用或者只需要很...

    curlyCheng 評論0 收藏0
  • spring-boot登陸過濾功能

    摘要:工程除了提供后端的路由轉(zhuǎn)發(fā),還可以做全局的過濾器,所以我選擇在這個(gè)工程里面寫登陸校驗(yàn)功能。如果校驗(yàn)成功,返回登陸成功,否則,返回登陸失敗。前端再根據(jù)登陸情況做路由跳轉(zhuǎn)。登陸成功登陸失敗最后,貼一下啟動(dòng)類的代碼 先簡單說一下我們工程的架構(gòu):前端工程是采用react,后端工程采用spring-cloud,里面分為zuul工程和其他功能模塊。zuul工程除了提供后端的路由轉(zhuǎn)發(fā),還可以做全局的...

    taoszu 評論0 收藏0
  • 使用Docker部署Spring-Boot+Vue博客系統(tǒng)

    摘要:先來看一下容器的文件中間一些操作省略這里用了多階段構(gòu)建容器,如果直接通過設(shè)置環(huán)境變量只會在后面一個(gè)階段生效,但是是在第一個(gè)階段執(zhí)行的,所以環(huán)境變量不能應(yīng)用到當(dāng)中。 在今年年初的時(shí)候,完成了自己的個(gè)Fame博客系統(tǒng)的實(shí)現(xiàn),當(dāng)時(shí)也做了一篇博文Spring-boot+Vue = Fame 寫blog的一次小結(jié)作為記錄和介紹。從完成實(shí)現(xiàn)到現(xiàn)在,也斷斷續(xù)續(xù)的根據(jù)實(shí)際的使用情況進(jìn)行更新。 只不過每...

    Eirunye 評論0 收藏0
  • spring-boot-plus 常見問題解決 FAQ(十二)

    摘要:常見問題解決編譯錯(cuò)誤問題日志編譯錯(cuò)誤編譯提示等日志錯(cuò)誤解決檢查是否安裝插件安裝安裝運(yùn)行錯(cuò)誤問題錯(cuò)誤不能連接解決檢查服務(wù)是否啟動(dòng)檢查地址和端口號未知數(shù)據(jù)庫解決檢查是否新建數(shù)據(jù)庫默認(rèn)的數(shù)據(jù)庫為,可在不同環(huán)境的配置文件中更改例如中 spring-boot-plus 常見問題解決 FAQ 編譯錯(cuò)誤問題 log日志編譯錯(cuò)誤 編譯提示log.info等日志錯(cuò)誤 解決 檢查是否安裝lombok插件...

    RayKr 評論0 收藏0

發(fā)表評論

0條評論

最新活動(dòng)
閱讀需要支付1元查看
<