MyBatis学习篇——⼊门程序
概述
MyBatis的前⾝的iBatis,是⼀个⽀持普通SQL查询、存储过程以及⾼级映射的持久层框架。其性能优异,具有⾼度的灵活性、可优化性和易于维护等特点。
MyBatis框架也被称之为ORM(对象关系映射)框架。ORM为⼀种为了解决⾯向对象与关系型数据库中数据类型不匹配的技术,通过描述java对象与数据库表之间的映射关系,⾃动将java应⽤程序中的对象持久化到关系型数据库的表中。
Hibernate 和 MyBatis的对⽐
Hibernate:是⼀个全表映射的框架,可以根据指定的存储逻辑,⾃动的⽣成对应的SQL,并调⽤JDBC接⼝来执⾏,(只需提供POJO和映射关系)因此其开发效率⾼于MyBatis。但是在多表关联时,对sql查询⽀持较差;更新数据时,需要发送所有字段;不⽀持存储过程*;不能通过优化sql来优化性能。因此其执⾏效率低。
MyBatis:是⼀个半⾃动映射的框架。即相对于全表映射,MyBatis需要⼿动匹配提供POJO、SQL和映射关系。与Hibernate相⽐,虽然使⽤MyBatis⼿动编写sql要⽐使⽤Hibernate⼯作量⼤,但是MyBatis可
以配置动态SQL并优化SQL,可通过配置决定SQL的映射规则,它还⽀持存储过程。
MyBatis⼊门程序的查询功能
步骤:
1. 读取配置⽂件;
2. 根据配置⽂件构建SQLSessionFactory;
3. 通过SQLSessionFactory创建SQLSession;
4. 使⽤SqlSession对象操作数据库(查询、添加、修改、删除以及提交事务等);
5. 关闭SqlSession。
案例演⽰:
导包(导⼊MyBatis的核⼼包和依赖包以及mysql的驱动包)
创建数据库表t_customer
创建log4j.properties⽂件(⽤于输出⽇志信息)
# Global logging configuration
# MyBatis
log4j.logger.itheima=DEBUG
#
log4j.appender.stdout=org.apache.log4j.ConsoleAppender
log4j.appender.stdout.layout=org.apache.log4j.PatternLayout
log4j.appender.stdout.layout.ConversionPattern=%5p [%t] - %m%n
在po包下创建⼀个Customer.java,属性和数据库表字段相对应。
package po;
public class Customer {
private Integer id;
private String username;
private String jobs;
private String phone;
public Integer getId() {
return id;
}
public void setId(Integer id) {
this.id = id;
}
public String getUsername() {
return username;
}
public void setUsername(String username) {
this.username = username;
}
public String getJobs() {
return jobs;
}
public void setJobs(String jobs) {
this.jobs = jobs;
}
public String getPhone() {
return phone;
}
public void setPhone(String phone) {
this.phone = phone;
}
@Override
public String toString() {
return "Customer [id=" + id + ", username=" + username + ", jobs=" + jobs + ", phone=" + phone + "]"; }
}
在mapper包下创建映射⽂件l
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE mapper PUBLIC "-////DTD Mapper 3.0//EN"
"/dtd/mybatis-3-mapper.dtd">
<!-- namespace表⽰命名空间,识别作⽤,测试代码中会⽤到 -->
<mapper namespace="mapper.CustomerMapper">
<!-- mapper以下的常⽤标签有sql、insert、delete、update、resultMap -->
<!--根据客户编号获取客户信息 -->
<!--
#{id} 为占位符,id则表⽰该占位符等待接收参数的名称为id
parameterType指定占位符中的参数类型为Integer;
resultType为⼿动映射,若bean属性和表字段⼀致,则可以直接⾃动映射。
-->
<select id="findCustomerById" parameterType="Integer"
resultType="po.Customer">
select * from t_customer where id = #{id}
</select>
<!--根据客户名模糊查询客户信息列表-->
<select id="findCustomerByName" parameterType="String"
resultType="po.Customer">
<!--
以下两种写法均正确
1. #{} 相当于占位符?==‘j’
2.当⽤${}时,{}内只能是value,⽽#{}的{}内可以是任意的。
3.“%”,'j',“%” 相当于是 '%',#{value},'%',因此'%${value}%'可以表⽰成 '%',#{value},'%'
此外,${}是sql字符串拼接,⽆法防⽌sql注⼊问题,可以使⽤concat()函数进⾏字符串拼接。      -->
<!-- select * from t_customer where username like '%${value}%' -->
select * from t_customer where username like concat('%',#{value},'%')
</select>
</mapper>
创建MyBatis的核⼼配置⽂件l
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE configuration PUBLIC "-////DTD Config 3.0//EN"
"/dtd/mybatis-3-config.dtd">
<configuration>
<!--1.配置环境,默认的环境id为mysql-->
<!-- 当MyBatis和spring整合后,environment配置将被废除 -->
<environments default="mysql">
<!--1.2.配置id为mysql的数据库环境 -->
<environment id="mysql">
<!-- 使⽤JDBC的事务管理 -->
<transactionManager type="JDBC" />
<!--数据库连接池 -->
<dataSource type="POOLED">
<property name="driver" value="sql.jdbc.Driver" />
<property name="url"
value="jdbc:mysql://localhost:3306/mybatis" />
<property name="username" value="root" />
<property name="password" value="123456" />
</dataSource>
</environment>
</environments>
<!--2.配置Mapper的位置 -->
<!-- 标签mappers下可以有多个mapper -->
<mappers>
<mapper resource="com/test_four/l" />
<mapper resource="l" />
</mappers>
</configuration>
在test包下创建MyBatisTest.java
根据⽤户编号查询部分
@Test
public void findCustomerByIdTest() throws Exception {
// 1、读取配置⽂件
String resource = "l";
InputStream inputStream =
// 2、根据配置⽂件构建SqlSessionFactory
SqlSessionFactory sqlSessionFactory =
new SqlSessionFactoryBuilder().build(inputStream);
// 3、通过SqlSessionFactory创建SqlSession
SqlSession sqlSession = sqlSessionFactory.openSession();
// 4、SqlSession执⾏映射⽂件中定义的SQL,并返回映射结果
Customer customer = sqlSession.selectOne("mapper"
+ ".CustomerMapper.findCustomerById", 1);
// 打印输出结果
System.out.String());
// 5、关闭SqlSession
sqlSession.close();
}
运⾏结果:
根据⽤户名模糊查询部分
@Test
public void findCustomerByNameTest() throws Exception{
// 1、读取配置⽂件
String resource = "l";
InputStream inputStream = ResourceAsStream(resource);    // 2、根据配置⽂件构建SqlSessionFactory
SqlSessionFactory sqlSessionFactory =
new SqlSessionFactoryBuilder().build(inputStream);
// 3、通过SqlSessionFactory创建SqlSession
SqlSession sqlSession = sqlSessionFactory.openSession();
// 4、SqlSession执⾏映射⽂件中定义的SQL,并返回映射结果
List<Customer> customers = sqlSession.selectList("mapper"
+ ".CustomerMapper.findCustomerByName", "j");
for (Customer customer : customers) {
//打印输出结果集
System.out.println(customer);
}
// 5、关闭SqlSession
sqlSession.close();
}
运⾏结果
其中根据客户编号精确查询客户信息的返回类型是Customer,调⽤⽅法是selectOne,返回的是⼀个⽤户
根据⽤户名模糊查询的返回类型的泛型,调⽤的⽅法是selectList
MyBatis⼊门程序的添加信息
<!-- 添加客户信息 -->
<!-- 这⾥的#{username}不需要customer.username
因为只要{}⾥的值和bean属性⼀致,就可以将其属性值传⼊到SQL语句中 -->
<insert id="addCustomer" parameterType="po.Customer">
insert into t_customer(username,jobs,phone)
values(#{username},#{jobs},#{phone})
</insert>
MyTest.java中添加测试代码
@Test
public void addCustomerTest() throws Exception{
// 1、读取配置⽂件
String resource = "l";
InputStream inputStream = ResourceAsStream(resource);
// 2、根据配置⽂件构建SqlSessionFactory
SqlSessionFactory sqlSessionFactory =
new SqlSessionFactoryBuilder().build(inputStream);
// 3、通过SqlSessionFactory创建SqlSession
SqlSession sqlSession = sqlSessionFactory.openSession();
// 4、SqlSession执⾏添加操作
// 4.1创建Customer对象,并向对象中添加数据
Customer customer = new Customer();
customer.setUsername("rose");
customer.setJobs("student");
customer.setPhone("133********");
// 4.2执⾏SqlSession的插⼊⽅法,返回的是SQL语句影响的⾏数
int rows = sqlSession.insert("mapper"
+ ".CustomerMapper.addCustomer", customer);
// 4.3通过返回结果判断插⼊操作是否执⾏成功
if(rows > 0){
数据库学习入门书籍
System.out.println("您成功插⼊了"+rows+"条数据!");
}else{
System.out.println("执⾏插⼊操作失败");
}
// 4.4提交事务,若⽆提交事务,则⽆法将信息写⼊数据库表中
sqlSessionmit();
// 5、关闭SqlSession
sqlSession.close();
}

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。