ERROR 18320:Error creating bean with name 'xxxxxController': Unsatisfied dependency expressed (Spring Boot无法自动注入bean问题
(Spring Boot无法自动注入bean问题)
spring boot项目报错ERROR 18320:Error creating bean with name ‘xxxxxController’: Unsatisfied dependency expressed……
我们看一下报错截图:
此类问题一般是因为mapper.xml中取表单数据信息传到Controller的过程中出现了问题:
·1、在Service中没有加@Service注解
.2、serives和serviceImpl没有对应的方法
·3、类忘记加 @Repository 注解
·4、在mapper.xml中resultMap的type中包的路径错误,在这个项目中就是因为.xml中的包路径错误导致
.5、xml中方法的参数类型paramterType不对
.6、application放置的位置不对
.7、mybatis-config.xml文件缺少了表头内容
(<)!DOCTYPE configuration PUBLIC “-//mybatis.org//DTD Config 3.0//EN”
“http://mybatis.org/dtd/mybatis-3-config.dtd”> -------加上括号里的<
.8、pom.xml缺少了某些插件