您的位置:首页 > 移动开发

【spring boot】mybatis启动报错:Consider defining a bean of type 'com.newhope.interview.dao.UserMapper' in your configuration.

2018-02-24 23:09 645 查看
启动报错:

2018-02-24 22:41:00.442  WARN 2952 --- [           main] ationConfigEmbeddedWebApplicationContext : Exception encountered during context initialization - cancelling refresh attempt: org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'userController': Unsatisfied dependency expressed through field 'userService'; nested exception is org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'userServiceImpl': Unsatisfied dependency expressed through field 'userMapper'; nested exception is org.springframework.beans.factory.NoSuchBeanDefinitionException: No qualifying bean of type 'com.newhope.interview.dao.UserMapper' available: expected at least 1 bean which qualifies as autowire candidate. Dependency annotations: {@org.springframework.beans.factory.annotation.Autowired(required=true)}
2018-02-24 22:41:00.444  INFO 2952 --- [           main] o.apache.catalina.core.StandardService   : Stopping service [Tomcat]
2018-02-24 22:41:00.465  INFO 2952 --- [           main] utoConfigurationReportLoggingInitializer :

Error starting ApplicationContext. To display the auto-configuration report re-run your application with 'debug' enabled.
2018-02-24 22:41:00.564 ERROR 2952 --- [           main] o.s.b.d.LoggingFailureAnalysisReporter   :

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

Description:

Field userMapper in com.newhope.interview.service.impl.UserServiceImpl required a bean of type 'com.newhope.interview.dao.UserMapper' that could not be found.

Action:

Consider defining a bean of type 'com.newhope.interview.dao.UserMapper' in your configuration.


解决方案:
https://www.cnblogs.com/JealousGirl/p/bean.html
====================================

未完结
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: