欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

springboot初了解遇到的问题

程序员文章站 2022-06-13 22:00:54
...

今天在跟着这个大佬的帖子写东西时遇到的问题:

在入口类注入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,所以这些办法我也只是照搬过来用,并不了解其中原委,望多多包涵。也希望有懂的来交流♂交流。笑~~~