这篇文章主要是说明了Spring3和MyBatis的整合方法,之所以要整合就是将MyBatis创建factory等各种繁冗的工作以及对session的管理、事务的管理交由spring容器帮我们管理,省心省力。
这个项目是在我的前几篇文章的基础上加入spring的内容,关于MyBatis的项目如何建立请查阅我之前的关于MyBatis的帖子。
整个的项目结构如下:
文章图片
- 先把包都导入吧,下面是所有需要的包,spring的包最恶心,共计需要18个包,而且从spring官网下载的zip里面仅仅有spring的jar包,引用的其他相关的包没有,好不容易终于凑齐了,全部都在最后面的示例项目中
文章图片
- 建立applicationContext.xml文件,放在类路径下面,内容如下:
上面的配置文件我就不多说了,一个是数据源,连接数据库用的,第二个是让Spring管理session用的,第三个是声明式事务,最后一个就是dao了。 有一点必须注意,interface、mapper file、mapper namespace这三个必须对应(并不是完全一样,而是对应),正确的写法如下: interface:org.qiuqiu.dao.PersonMapper mapper file:org/qiuqiu/dao/PersonMapper.xml mapper namespace:org.qiuqiu.dao.PersonMapper 这三个必须对应,否则会报以下错误:
Exception in thread "main" java.lang.IllegalArgumentException: Mapped Statements collection does not contain value for ...
at org.apache.ibatis.session.Configuration$StrictMap.get(Configuration.java:594)
at org.apache.ibatis.session.Configuration.getMappedStatement(Configuration.java:436)
at org.apache.ibatis.session.Configuration.getMappedStatement(Configuration.java:428)
at org.apache.ibatis.binding.MapperMethod.setupCommandType(MapperMethod.java:188)
at org.apache.ibatis.binding.MapperMethod.(MapperMethod.java:51)
at org.apache.ibatis.binding.MapperProxy.invoke(MapperProxy.java:37)
at $Proxy5.selectByExample(Unknown Source)
3.测试类,如下:
package org.qiuqiu.test;
import java.util.List;
import org.qiuqiu.dao.PersonMapper;
import org.qiuqiu.vo.Person;
import org.qiuqiu.vo.PersonExample;
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;
public class SpringTest {public static void main(String[] args) {
ApplicationContext ctx = new ClassPathXmlApplicationContext("applicationContext.xml");
PersonMapper pm = ctx.getBean("personMapper", PersonMapper.class);
PersonExample example = new PersonExample();
example.createCriteria().andAgeLessThan(10);
List【Spring|Mybatis入门实例(五)——MyBatis与Spring 3.X的整合】 list = pm.selectByExample(example);
for (Person p : list) {
System.out.println(p.getName() + "" + p.getAge() + ""+ p.getPassword());
}
}}
附件中会包含所有的jar包以及数据库表
推荐阅读
- =======j2ee|spring用注解实现注入的@resource,@autowired,@inject区别
- jar|springboot项目打成jar包和war包,并部署(快速打包部署)
- 数据库|效率最高的Excel数据导入---(c#调用SSIS Package将数据库数据导入到Excel文件中【附源代码下载】)...
- java人生|35K 入职华为Java开发那天,我哭了(这 5 个月做的一切都值了)
- Java毕业设计项目实战篇|Java项目:在线嘿嘿网盘系统设计和实现(java+Springboot+ssm+mysql+maven)
- 微服务|微服务系列:服务发现与注册-----Eureka(面试突击!你想了解的Eureka都在这里.持续更新中......)
- 框架|Mybatis的一级缓存和二级缓存
- java|ApplicationListener和SpringApplicationRunListener的联系
- Spring|SpringSecurity--自定义登录页面、注销登录配置
- 性能|性能工具之 Jmeter 通过 SpringBoot 工程启动