本文主要是介绍Field userMapper in com.example.controller.LoginController required a bean of type ‘com.example.mapp,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
报错提示:
Field userMapper in com.example.controller.LoginController required a bean of type 'com.example.mapp
翻译:
com.example.controller.LoginController 中的字段 userMapper 需要一个类型为 'com.example.mapp 的 bean
无法注入bean
原因一:
Dao(mapper)层缺少@Mapper或者注解
如果有多个mapper接口,直接在启动类里添加@MapperScan注解,就不用在单个接口
文件添加@Mapper
原因二:
service层缺少@Service注解
可以在实现类加@Service注解或者在接口文件加@Service
报这个错误,首先排查一下有没有缺少@Mapper注解或者@Service注解
当然也可能是其他地方出问题
这篇关于Field userMapper in com.example.controller.LoginController required a bean of type ‘com.example.mapp的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!