时间:2021-05-02
mybatis—spring 项目
目前大部分的 java 互联网项目,都是用 spring mvc + spring + mybatis 搭建平台的。
使用 spring ioc 可以有效的管理各类的 java 资源,达到即插即拔的功能;通过 spring aop 框架,数据库事务可以委托给 spring 管理,消除很大一部分的事务代码,配合 mybatis 的高灵活、可配置、可优化 sql 等特性,完全可以构建高性能的大型网站。
毫无疑问,mybatis 和 spring 两大框架已经成了 java 互联网技术主流框架组合,它们经受住了大数据量和大批量请求的考验,在互联网系统中得到了广泛的应用。使用 mybatis-spring 使得业务层和模型层得到了更好的分离,与此同时,在 spring 环境中使用 mybatis 也更加简单,节省了不少代码,甚至可以不用 sqlsessionfactory、 sqlsession 等对象,因为 mybatis-spring 为我们封装了它们。
摘自:《java ee 互联网轻量级框架整合开发》
第一步:创建测试工程
第一步,首先在 idea 中新建一个名为【mybatisandspring】的 webproject 工程:
然后在【src】中创建 4 个空包:
接着新建源文件夹【config】,用于放置各种资源配置文件:
再在【web】文件夹下新建一个【web-inf】默认安全文件夹,并在其下创建一个【classes】和【lib】,并将项目的输出位置,改在【classes】下:
工程的完整初始结构如下:
第二步:引入依赖 jar 包
第二步,就是要准备项目的依赖 jar 包:
在【web-inf】文件夹下的【lib】文件夹中放置上面列举的 jar 包,然后添加依赖。
第三步:编写 spring 配置文件
第三步,编写 spring 的配置文件:
第四步:编写 mybatis 配置文件
第四步,在【mybatis】包下编写 mybatis 的全局配置文件 sqlmapconfig.xml :
? 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 <?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> <!-- settings --> <settings> <!-- 打开延迟加载的开关 --> <setting name="lazyloadingenabled" value="true"/> <!-- 将积极加载改为消极加载(即按需加载) --> <setting name="aggressivelazyloading" value="false"/> <!-- 打开全局缓存开关(二级缓存)默认值就是 true --> <setting name="cacheenabled" value="true"/> </settings> <!-- 别名定义 --> <typealiases> <package name="cn.wmyskxz.pojo"/> </typealiases> <!-- 加载映射文件 --> <mappers> <!-- 通过 resource 方法一次加载一个映射文件 --> <mapper resource="sqlmap/usermapper.xml"/> <!-- 批量加载mapper --> <package name="cn.wmyskxz.mapper"/> </mappers> </configuration>在该配置文件中:
第五步:编写 mapper 以及其他配置文件
第五步,编写 mapper 映射文件,这里依然定义 mapper 映射文件的名字为 “usermapper.xml” (与 sqlmapconfig.xml 中配置一致),为了测试效果,只配置了一个查询类 sql 映射:
? 1 2 3 4 5 6 7 8 9 <?xml version="1.0" encoding="utf-8" ?> <!doctype mapper public "-//mybatis.org//dtd mapper 3.0//en" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> <mapper namespace="test"> <select id="finduserbyid" parametertype="_int" resulttype="user"> select * from user where id = #{id} </select> </mapper>在该配置中,输出参数的映射为 “user” ,这是因为之前在 sqlmapconfig.xml 中配置了 “cn.wmyskxz.pojo” 包下的实体类使用别名(即首字母小写的类名),所以这里只需在 “cn.wmyskxz.pojo” 包下,创建 “finduserbyid” 对应的 java 实体类 user:
? 1 2 3 4 5 6 7 package cn.wmyskxz.pojo; import java.io.serializable; public class user implements serializable { private int id; private string username; }实现 serializable 接口是为之后使用 mapper 动态代理做准备,这里没有使用动态代理。
在数据库资源 “db.properties” 中配置了数据库的连接信息,以 “key=value” 的形式配置,string 正是使用 “${}” 获取其中 key 对应的 value 配置的:
? 1 2 3 4 jdbc.driver=com.mysql.jdbc.driver jdbc.url=jdbc:mysql://localhost:3306/mybatis?characterencoding=utf-8 jdbc.username=root jdbc.password=root另外日志配置和之前的配置一样,我就直接黏贴了:
? 1 2 3 4 5 6 7 # global logging configuration # 在开发环境下日志级别要设置成 debug ,生产环境设为 info 或 error log4j.rootlogger=debug, stdout # console output... log4j.appender.stdout=org.apache.log4j.consoleappender log4j.appender.stdout.layout=org.apache.log4j.patternlayout log4j.appender.stdout.layout.conversionpattern=%5p [%t] - %m%n第六步:编写 dao 层
第六步,进行数据库交互(data access object)层的编写。
由于该项目只对 user 用户查询,所以 dao 层就只有一个类,在 “cn.wmyskxz” 包下创建 dao 层的 interface 接口,其中定义了 finduserbyid 方法,参数为用户的 id 值(int 类型):
? 1 2 3 4 5 6 package cn.wmyskxz.dao; import cn.wmyskxz.pojo.user; public interface userdao { // 根据 id 查询用户信息 public user finduserbyid(int id) throws exception; }然后在同一个包下创建 userdao 接口的实现类 userdaoimpl:
? 1 2 3 4 5 6 7 8 9 10 11 12 13 package cn.wmyskxz.dao; import cn.wmyskxz.pojo.user; import org.apache.ibatis.session.sqlsession; import org.mybatis.spring.support.sqlsessiondaosupport; public class userdaoimpl extends sqlsessiondaosupport implements userdao { @override public user finduserbyid(int id) throws exception { // 继承 sqlsessiondaosupport 类,通过 this.getsqlsession() 得到 sqlsession sqlsession sqlsession = this.getsqlsession(); user user = sqlsession.selectone("test.finduserbyid", id); return user; } }有几点解释:
注意: dao 实现类继承了 sqlsessiondaosupport 父类后,就无须自己定义获取 sqlsession 会话实例类方法了,该父类会默认加载数据源信息并提供获取 sqlsession 类的方法。
第七步:编写 service 测试类
在 “cn.wmyskxz.test” 包下创建【userservicetest】测试类:
? 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 package cn.wmyskxz.test; import cn.wmyskxz.dao.userdao; import cn.wmyskxz.pojo.user; import org.junit.before; import org.junit.test; import org.springframework.context.applicationcontext; import org.springframework.context.support.classpathxmlapplicationcontext; public class userservicetest { private applicationcontext applicationcontext; // 在执行测试方法之前首先获取 spring 配置文件对象 // 注解@before在执行本类所有测试方法之前先调用这个方法 @before public void setup() throws exception { applicationcontext = new classpathxmlapplicationcontext("classpath:spring/applicationcontext.xml"); } @test public void testfinduserbyid() throws exception { // 通过配置资源对象获取 userdao 对象 userdao userdao = (userdao) applicationcontext.getbean("userdao"); // 调用 userdao 的方法 user user = userdao.finduserbyid(1); // 输出用户信息 system.out.println(user.getid() + ":" + user.getusername()); } }运行测试方法,输出结果如下:
动态代理 + 注解实现
上面的实例程序并没有使用 mapper 动态代理和注解来完成,下面我们就来试试如何用动态代理和注解:
第一步:编写 userquerymapper
在【mapper】下新建一个【userquerymapper】代理接口,并使用注解:
? 1 2 3 4 5 6 7 8 9 10 package cn.wmyskxz.mapper; import cn.wmyskxz.pojo.user; import org.apache.ibatis.annotations.select; public interface userquerymapper { @select("select * from user where id = #{id}") public user finduserbyid(int id) throws exception; }注意: 在默认情况下,该 bean 的名字为 userquerymapper(即首字母小写)
现在有了代理类,我们需要通知 spring 在这里来扫描到该类,mapper 扫描配置对象需要用专门的扫描器:
? 1 2 3 4 5 <!-- mapper 扫描器 --> <bean class="org.mybatis.spring.mapper.mapperscannerconfigurer"> <!-- 扫描 cn.wmyskxz.mapper 包下的组件 --> <property name="basepackage" value="cn.wmyskxz.mapper"/> </bean>第二步:编写测试类
这一次我们获取的不再是 userdao 对象,而是定义的 mapper 代理对象 userquerymapper:
? 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 package cn.wmyskxz.test; import cn.wmyskxz.mapper.userquerymapper; import cn.wmyskxz.pojo.user; import org.junit.before; import org.junit.test; import org.springframework.context.applicationcontext; import org.springframework.context.support.classpathxmlapplicationcontext; public class userservicetest { private applicationcontext applicationcontext; // 在执行测试方法之前首先获取 spring 配置文件对象 // 注解@before在执行本类所有测试方法之前先调用这个方法 @before public void setup() throws exception { applicationcontext = new classpathxmlapplicationcontext("classpath:spring/applicationcontext.xml"); } @test public void testfinduserbyid() throws exception { // 通过配置资源对象获取 userdao 对象 userquerymapper userquerymapper = (userquerymapper) applicationcontext.getbean("userquerymapper"); // 调用 userdao 的方法 user user = userquerymapper.finduserbyid(1); // 输出用户信息 system.out.println(user.getid() + ":" + user.getusername()); } }运行测试方法,得到正确结果:
可以看到,查询结果和之前非 mapper 代理的查询结果一样。
总结
以上所述是小编给大家介绍的mybatis 与 spring 的完美整合方法,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对服务器之家网站的支持!
原文链接:https://www.cnblogs.com/wmyskxz/p/8879513.html
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
本文主要介绍Spring与Mybatis三种常用整合方法,需要的整合架包是mybatis-spring.jar,可通过链接http://code.google.
为了梳理前面学习的《Spring整合MyBatis(Maven+MySQL)一》与《Spring整合MyBatis(Maven+MySQL)二》中的内容,准备做
spring和mybatis整合整合思路需要spring通过单例方式管理SqlSessionFactory。spring和mybatis整合生成代理对象,使用S
昨天介绍了mybatis与spring的整合,今天我们完成剩下的springmvc的整合工作。要整合springmvc首先得在web.xml中配置springm
前期工作1.导入mybatis整合依赖org.mybatis.spring.bootmybatis-spring-boot-starter2.1.42.连接数据