Consider defining a bean of type 'com.jc.wechat.app.dao.ClientRepository' in your configuration springboot database appears. Solution

Complete the error log:

  

Error starting ApplicationContext. To display the conditions report re-run your application with 'debug' enabled.
2020-01-02 12:50:10.767 ERROR 8624 --- [ main] o.s.b.d.LoggingFailureAnalysisReporter :

***************************
APPLICATION FAILED TO START
***************************

Description:

Field clientRepository in com.jc.wechat.app.service.impl.ClientServiceImpl required a bean of type 'com.jc.wechat.app.dao.ClientRepository' that could not be found.

The injection point has the following annotations:
- @org.springframework.beans.factory.annotation.Autowired(required=true)


Action:

Consider defining a bean of type 'com.jc.wechat.app.dao.ClientRepository' in your configuration.


Process finished with exit code 1

Solution:

Added packet path in the startup file scan frame

@ComponentScan (basePackages = "com.jc.wechat.app.dao") // root incorporated dao

Guess you like

Origin www.cnblogs.com/pxjbk/p/12132336.html