springboot初瞭解遇到的問題
阿新 • • 發佈:2019-01-04
今天在跟著這個大佬的帖子寫東西時遇到的問題:
在入口類注入bean時啟動報錯
2018-05-29 10:51:04.348 INFO 5528 --- [ main] ConditionEvaluationReportLoggingListener : Error starting ApplicationContext. To display the conditions report re-run your application with 'debug' enabled. 2018-05-29 10:51:04.474 ERROR 5528 --- [ main] o.s.b.d.LoggingFailureAnalysisReporter : *************************** APPLICATION FAILED TO START *************************** Description: Field bookBean in action.HellorW required a bean of type 'action.BookBean' that could not be found. Action: Consider defining a bean of type 'action.BookBean' in your configuration.
解決辦法:在入口類添加註解@ComponentScan即可解決。還有一點就是實體類一定要在入口類同一個包下或者子包下,詳細可參見此帖子瞭解。
最後因為本萌新也是才接觸springboot,所以這些辦法我也只是照搬過來用,並不瞭解其中原委,望多多包涵。也希望有懂的來交流♂交流。笑~~~