内容简介:我们在使用Mybatis的时候,获取需要执行的SQL语句的时候,都是通过调用xml文件来获取,例如:IUser.xml:IUser.java:
我们在使用Mybatis的时候,获取需要执行的 SQL 语句的时候,都是通过调用xml文件来获取,例如: User user = (User) sqlSession.selectOne("cn.ddnd.www.Entity.User.getUser", "xue8@qq.com");
。这种方式是通过字符串去调用标签定义的SQL语句,第一容易出错,第二是当xml当中的id修改过后你不知道在程序当中有多少个地方使用了这个id,需要手动一一修改。后来Mybatis推出了Mapper动态代理方式,只需要编写 Mapper接口 (相当于Dao层),由Mybatis框架根据接口定义创建接口的动态代理对象。
Mapper接口规范
- Mapper.xml中的namespace和Mapper.java接口中的类路径相同,即
<mapper namespace="cn.ddnd.www.Dao.User">
对应的是cn.ddnd.www.Dao
包下的User
类。 - Mapper.xml中的
select
ID要和Mapper.java接口中的类方法名相同,即<select id="getUser" parameterType="String" resultType="User">
的getUser
和public User getUser(String email);
的getUser
方法名对应。 - Mapper.xml中的
parameterType
的类型要和Mapper接口中方法的 传入参数类型 相同。 - Mapper.xml中的
resultType
的类型要和Mapper接口中方法的 返回参数类型 相同。
实现过程
配置Mapper.xml
IUser.xml:
<?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="cn.ddnd.www.Dao.IUser"> <select id="getUser" parameterType="String" resultType="User"> select * from user where email = #{email} </select> </mapper> 复制代码
配置Mapper.java接口
IUser.java:
package cn.ddnd.www.Dao; import cn.ddnd.www.Entity.User; public interface IUser { public User getUser(String email); } 复制代码
编写Mybatis配置文件
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 type="cn.ddnd.www.Entity.User" alias="User"></typeAlias> </typeAliases> <environments default="development"> <environment id="development"> <transactionManager type="JDBC"/> <dataSource type="POOLED"> <property name="driver" value="com.mysql.cj.jdbc.Driver"/> <property name="url" value="jdbc:mysql://127.0.0.1:3306/spring?serverTimezone=GMT%2B8" /> <property name="username" value="root"/> <property name="password" value="root"/> </dataSource> </environment> </environments> <mappers> <mapper resource="cn/ddnd/www/Dao/IUser.xml"></mapper> </mappers> </configuration> 复制代码
测试类
test.java:
import cn.ddnd.www.Dao.IUser; import cn.ddnd.www.Entity.User; import org.apache.ibatis.session.SqlSession; import org.apache.ibatis.session.SqlSessionFactory; import org.apache.ibatis.session.SqlSessionFactoryBuilder; import org.junit.Test; import org.apache.ibatis.io.Resources; import java.io.Reader; import java.io.IOException; public class test { private static Reader reader; private static SqlSessionFactory sqlSessionFactory; static{ try{ reader = Resources.getResourceAsReader("Mybatis-config.xml"); sqlSessionFactory = new SqlSessionFactoryBuilder().build(reader); }catch (IOException e){ e.printStackTrace(); } } @Test public void a() throws IOException { SqlSession sqlSession = sqlSessionFactory.openSession(); try{ IUser IUser = (IUser) sqlSession.getMapper(IUser.class); User user = IUser.getUser("xue8@qq.com"); System.out.println("用户的邮箱是:" + user.getEmail() + ",用户的名称是:" + user.getName() + ",用户的密码是:" + user.getPassword()); }finally { sqlSession.close(); } } } 复制代码
IUser IUser = (IUser) sqlSession.getMapper(IUser.class);
sqlSession会帮我们生成一个实现类(给IUser接口),这样即可获取IUser接口的代理对象。 User user = IUser.getUser("xue8@qq.com");
代理对象方法。
转自:ddnd.cn/2018/11/30/…
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持 码农网
猜你喜欢:- 使用 AJP 方式配置反向代理
- PHP CURL方式使用代理访问网站
- 用轻代理的方式做数据库安全
- (一)Mybatis基本配置,Statement方式,动态代理增删改查
- Zabbix4.0使用SNMP代理方式监控vcenter6.5
- Proxy-Go v8.7 发布,增强 socks5 代理 UDP 功能,DNS 支持 TCP 方式查询!
本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。
算法分析导论(第2版)(英文版)
[美]Robert Sedgewick(罗伯特•塞奇威克)、[美]Philippe Flajolet(菲利普•弗拉若莱) / 电子工业出版社 / 2015-6 / 128.00元
《算法分析导论(第2版)(英文版)》全面介绍了算法的数学分析中所涉及的主要技术。涵盖的内容来自经典的数学课题(包括离散数学、初等实分析、组合数学),以及经典的计算机科学课题(包括算法和数据结构)。《算法分析导论(第2版)(英文版)》的重点是“平均情况”或“概率性”分析,书中也论述了“最差情况”或“复杂性”分析所需的基本数学工具。 《算法分析导论(第2版)(英文版)》第 1 版为行业内的经典著......一起来看看 《算法分析导论(第2版)(英文版)》 这本书的介绍吧!