浅析Spring和MyBatis整合及逆向工程
spring和mybatis整合
整合思路
需要spring通过单例方式管理sqlsessionfactory。
spring和mybatis整合生成代理对象,使用sqlsessionfactory创建sqlsession。(spring和mybatis整合自动完成)
持久层的mapper都需要由spring进行管理。
整合环境
创建一个新的java工程(接近实际开发的工程结构)
jar包:
mybatis3.2.7的jar包
spring3.2.0的jar包
mybatis和spring的整合包:早期ibatis和spring整合是由spring官方提供,现在mybatis和spring整合由mybatis提供。
全部jar包(含springmvc)
工程结构
第一步:整合配置sqlsessionfactory
在applicationcontext.xml配置sqlsessionfactory和数据源
sqlsessionfactory在mybatis和spring的整合包下。
<!-- 加载配置文件 --> <context:property-placeholder location="classpath:db.properties" /> <!-- 数据源,使用dbcp --> <bean id="datasource" class="org.apache.commons.dbcp.basicdatasource" destroy-method="close"> <property name="driverclassname" value="${jdbc.driver}" /> <property name="url" value="${jdbc.url}" /> <property name="username" value="${jdbc.username}" /> <property name="password" value="${jdbc.password}" /> <property name="maxactive" value="10" /> <property name="maxidle" value="5" /> </bean> <!-- sqlsessinfactory --> <bean id="sqlsessionfactory" class="org.mybatis.spring.sqlsessionfactorybean"> <!-- 加载mybatis的配置文件 --> <property name="configlocation" value="mybatis/sqlmapconfig.xml" /> <!-- 数据源 --> <property name="datasource" ref="datasource" /> </bean>
原始dao开发(和spring整合后)
sqlmap/user.xml
在sqlmapconfig.xml中加载user.xml
dao(实现类继承sqlsessiondaosupport)
之前dao接口实现类需要注入sqlsessoinfactory,通过spring进行注入。
这里使用spring声明配置方式,配置dao的bean:
让userdaoimpl实现类继承sqlsessiondaosupport
配置dao
在applicationcontext.xml中配置dao接口
<!-- 原始dao接口 --> <bean id="userdao" class="cn.itcast.ssm.dao.userdaoimpl"> <property name="sqlsessionfactory" ref="sqlsessionfactory"/> </bean>
测试程序
source_folder/userdaoimpltest.java public class userdaoimpltest { private applicationcontext applicationcontext; //在setup这个方法得到spring容器 @before public void setup() throws exception { applicationcontext = new classpathxmlapplicationcontext("classpath:spring/applicationcontext.xml"); } @test public void testfinduserbyid() throws exception { userdao userdao = (userdao) applicationcontext.getbean("userdao"); //调用userdao的方法 user user = userdao.finduserbyid(1); system.out.println(user); } }
mapper代理开发
usermapper.xml和usermapper.java
将之前工程中拷贝过来删改包路径即可。
通过mapperfactorybean创建代理对象
因为usermapper不是接口类型,所以要用mapperfactorybean来生成接口类型
此方法问题:
需要针对每个mapper进行配置,麻烦。
通过mapperscannerconfigurer进行mapper扫描(建议使用)
* 这里通过basepackage属性配置了mapper的扫描路径后,在sqlmapperconfig.xml中就不用配置扫描路径了。
这里使用sqlsessionfactorybeanname属性是因为如果配置的是sqlsessionfactory属性,将不会先加载数据库配置文件及数据源配置(db.properties)
测试代码
逆向工程
mybaits需要程序员自己编写sql语句,mybatis官方提供逆向工程 可以针对单表自动生成mybatis执行所需要的代码(mapper.java,mapper.xml、po..)
企业实际开发中,常用的逆向工程方式:由于数据库的表生成java代码。
下载逆向工程
使用方法(会用)运行逆向工程
建议使用java程序方式,不依赖开发工具。
生成代码配置文件(有4处需要修改的地方)
生成po类的位置 : cn.itcast.ssm.po
mapper映射文件生成的位置 : cn.itcast.ssm.mapper
mapper接口生成的位置 : cn.itcast.ssm.mapper
指定数据库表:
<table tablename="items"></table> <table tablename="orders"></table> <table tablename="orderdetail"></table> <table tablename="user"></table> <?xml version="1.0" encoding="utf-8"?> <!doctype generatorconfiguration public "-//mybatis.org//dtd mybatis generator configuration 1.0//en" "http://mybatis.org/dtd/mybatis-generator-config_1_0.dtd"> <generatorconfiguration> <context id="testtables" targetruntime="mybatis3"> <commentgenerator> <!-- 是否去除自动生成的注释 true:是 : false:否 --> <property name="suppressallcomments" value="true" /> </commentgenerator> <!--数据库连接的信息:驱动类、连接地址、用户名、密码 --> <jdbcconnection driverclass="com.mysql.jdbc.driver" connectionurl="jdbc:mysql://localhost:3306/mybatis" userid="root" password="mysql"> </jdbcconnection> <!-- <jdbcconnection driverclass="oracle.jdbc.oracledriver" connectionurl="jdbc:oracle:thin:@127.0.0.1:1521:yycg" userid="yycg" password="yycg"> </jdbcconnection> --> <!-- 默认false,把jdbc decimal 和 numeric 类型解析为 integer,为 true时把jdbc decimal 和 numeric 类型解析为java.math.bigdecimal --> <javatyperesolver> <property name="forcebigdecimals" value="false" /> </javatyperesolver> <!-- targetproject:生成po类的位置 --> <javamodelgenerator targetpackage="cn.itcast.ssm.po" targetproject=".\src"> <!-- enablesubpackages:是否让schema作为包的后缀 --> <property name="enablesubpackages" value="false" /> <!-- 从数据库返回的值被清理前后的空格 --> <property name="trimstrings" value="true" /> </javamodelgenerator> <!-- targetproject:mapper映射文件生成的位置 --> <sqlmapgenerator targetpackage="cn.itcast.ssm.mapper" targetproject=".\src"> <!-- enablesubpackages:是否让schema作为包的后缀 --> <property name="enablesubpackages" value="false" /> </sqlmapgenerator> <!-- targetpackage:mapper接口生成的位置 --> <javaclientgenerator type="xmlmapper" targetpackage="cn.itcast.ssm.mapper" targetproject=".\src"> <!-- enablesubpackages:是否让schema作为包的后缀 --> <property name="enablesubpackages" value="false" /> </javaclientgenerator> <!-- 指定数据库表 --> <table tablename="items"></table> <table tablename="orders"></table> <table tablename="orderdetail"></table> <table tablename="user"></table> </context> </generatorconfiguration>
执行生成程序
生成后的代码
使用生成的代码
需要将生成工程中所生成的代码拷贝到自己的工程中。
测试itemsmapper中的方法
//自定义条件查询 @test public void testselectbyexample() { itemsexample itemsexample = new itemsexample(); //通过criteria构造查询条件 itemsexample.criteria criteria = itemsexample.createcriteria(); criteria.andnameequalto("笔记本3"); //可能返回多条记录 list<items> list = itemsmapper.selectbyexample(itemsexample); system.out.println(list); } //根据主键查询 @test public void testselectbyprimarykey() { items items = itemsmapper.selectbyprimarykey(1); system.out.println(items); } //插入 @test public void testinsert() { //构造 items对象 items items = new items(); items.setname("手机"); items.setprice(999f); itemsmapper.insert(items); } //更新数据 @test public void testupdatebyprimarykey() { //对所有字段进行更新,需要先查询出来再更新 items items = itemsmapper.selectbyprimarykey(1); items.setname("水杯"); itemsmapper.updatebyprimarykey(items); //如果传入字段不空为才更新,在批量更新中使用此方法,不需要先查询再更新 //itemsmapper.updatebyprimarykeyselective(record); }
以上所述是小编给大家介绍的浅析spring和mybatis整合及逆向工程,希望对大家有所帮助
上一篇: php修改数组键名的方法示例
推荐阅读
-
浅析Spring和MyBatis整合及逆向工程
-
浅析Spring和MyBatis整合及逆向工程
-
浅析mybatis和spring整合的实现过程
-
浅析mybatis和spring整合的实现过程
-
SpringBoot整合MyBatis逆向工程及 MyBatis通用Mapper实例详解
-
SpringBoot整合MyBatis逆向工程及 MyBatis通用Mapper实例详解
-
Spring+SpringMVC+MyBatis深入学习及搭建——MyBatis和Spring整合
-
Spring+SpringMVC+MyBatis深入学习及搭建——MyBatis和Spring整合
-
Spring+SpringMVC+MyBatis深入学习及搭建——MyBatis逆向工程
-
Spring+SpringMVC+MyBatis深入学习及搭建——MyBatis逆向工程