关于Spring整合Mybatis运行后报错问题大全

1.通配符的匹配很全面, 但无法找到元素 ‘tx:advice’ 的声明

解决方法:在配置文件中添加划线的两行
在这里插入图片描述

2. 通配符的匹配很全面, 但无法找到元素 ‘aop:config’ 的声明

解决:同标题1一样添加
http://www.springframework.org/schema/aop
http://www.springframework.org/schema/aop/spring-aop.xsd

3.Field or property ‘dbs’ cannot be found on object of type ‘org.springframework.beans.factory.config.BeanExpressionContext’

解决:
在这里插入图片描述

4.Error creating bean with name ‘sessionFactory’ defined in class path resource [Bean.xml]: Invocation of init method failed

解决:
在引用路径classpath:mybaits/config.xm处
改为classpath:/mybaits/config.xml
如图:在这里插入图片描述


版权声明:本文为csdn546229768原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接和本声明。