spring+Mybatis 整合报错
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了spring+Mybatis 整合报错相关的知识,希望对你有一定的参考价值。
报错信息如下:
org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'sqlSessionFactory' defined in ServletContext resource [/WEB-INF/spring/app-config.xml]: Invocation of init method failed; nested exception is org.springframework.core.NestedIOException: Failed to parse config resource: ServletContext resource [/WEB-INF/mybatis/myBatis-config.xml]; nested exception is org.apache.ibatis.builder.BuilderException: Error parsing SQL Mapper Configuration.
app-config.xml文件内容:
<!-- Mybatis配置 -->
<bean id="sqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean">
<property name="dataSource" ref="dataSource" />
<property name="configLocation" value="/WEB-INF/mybatis/myBatis-config.xml" />
</bean>
<bean id="sqlSessionTemplate" class="org.mybatis.spring.SqlSessionTemplate">
<constructor-arg index="0" ref="sqlSessionFactory" />
<!-- <constructor-arg index="1" value="BATCH" /> -->
</bean>
myBatis-config.xml文件内容:
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE configuration PUBLIC
"-//mybatis.org//DTD Config 3.0//EN"
"http://mybatis.org/dtd/mybatis-3-config.dtd">
<configuration>
<!-- typeAliases>
<typeAlias alias="User" type="com.ssm.entity.User"/>
</typeAliases -->
<mappers>
<mapper resource="org/geju/biz/ibatis/xml/TUSER_SqlMap.xml" />
</mappers>
</configuration>
求问题解决办法
里面的SQL写法有问题
加上 <![CDATA[ ]]> 试试
spring整合mybatis时运行测试代码报错Injection of autowired dependencies failed,请各位大神帮忙看看
代码结构如下图:
运行测试时报错用ue复制出来,如下图
请问各位我这个是什么问题,我是菜鸟,请个大神指教,谢谢大家~
下面是service
select结果和result没有对应上。
MyBatis 是一个可以自定义SQL、存储过程和高级映射的持久层框架。MyBatis 摒除了大部分的JDBC代码、手工设置参数和结果集重获。MyBatis 只使用简单的XML 和注解来配置和映射基本数据类型、Map 接口和POJO 到数据库记录。相对Hibernate和Apache OJB等“一站式”ORM解决方案而言,Mybatis 是一种“半自动化”的ORM实现。
参考技术B 没有定义bean,在spring之中以上是关于spring+Mybatis 整合报错的主要内容,如果未能解决你的问题,请参考以下文章