1. 程式人生 > >Spring Boot 警告: ApplicationContext is unlikely to ...... the default package

Spring Boot 警告: ApplicationContext is unlikely to ...... the default package

在執行Spring Boot專案的時候遇到警告報錯,專案無法執行:

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

其實原因是Spring Boot的啟動類不能夠放在元件的預設包當中,也就是不能夠放在java資料夾的根目錄下,所以另外新建一個包,然後把原資料夾下的類放入該包中就行了