一、MyBatis环境的构建
MyBatis的3.4.2版本可以通过“https://github.com/mybatis/mybatis-3/releases”网址下载。在下载时只需要选择mybatis-3.4.2.zip即可,解压后得到以下目录。
其中mybatis-3.4.2.jar是MyBatis的核心包,mybatis-3.4.2.pdf是MyBatis的使用手册,lib文件夹下JSR是MyBatis的依赖包。
在使用MyBatis框架时,需要将核心包和依赖包引入到应用程序中。
二、MyBatis的工作原理
三、MyBatis入门程序——查询客户
1、创建Web应用,并添加相关JAR包
2、创建日志文件
MyBatis默认使用log4j输出日志信息,如果开发者需要查看控制台输出的SQL语句,那么需要在classpath路径下配置其日志文件。
# Global logging configuration
log4j.rootLogger=ERROR, stdout
# MyBatis logging configuration...
log4j.logger.com.itheima = DEBUG
# 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
在日志文件中配置了全局的日志配置、MyBatis的日志配置和控制台输出,其中MyBatis的日志配置用于将com.mybatis包下的所有类的日志记录级别设置为DEBUG。改配置文件不需要全部手写,可以从MyBatis使用手册中的logging小节复制,然后进行简单的修改。
3、创建持久类
创建持久类Customer,注意在类中声明的属性与数据表t_customer的字段一致。
package com.itheima.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 + "]";
}
}
4、创建映射文件
<?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">
<!-- namespace表示命名空间 -->
<mapper namespace="com.itheima.po.Customer">
<!-- 根据客户编号获取客户信息 -->
<select id="findCustomerById" parameterType="Integer"
resultType="com.itheima.po.Customer">
<!-- #{id}相当于? -->
select * from t_customer where id = #{id}
</select>
<!-- 根据客户名称模糊查询客户信息 -->
<select id="findCustomerByName" parameterType="String"
resultType="com.itheima.po.Customer">
<!-- select * from t_customer where username like '%${value}%' -->
<!--防止sql注入问题,不用${value}这种形式,用#{id}可以做到 -->
select * from t_customer where username like concat('%',#{username},'%')
</select>
<!-- 添加客户信息 -->
<insert id="addCustomer" parameterType="com.itheima.po.Customer">
insert into t_customer(username,jobs,phone) values(#{username},#{jobs},#{phone})
</insert>
<!-- 更新客户信息 -->
<update id="updateCustomer" parameterType="com.itheima.po.Customer">
update t_customer set username = #{username},jobs = #{jobs},phone = #{phone} where id = #{id}
</update>
<!--删除客户信息 -->
<delete id="deleteCustomer" parameterType="Integer">
delete from t_customer where id = #{id}
</delete>
</mapper>
在上述映射文件中,<mapper>元素是配置文件的根元素,包含了一个namspace属性,该属性值通常设置为“包名+SQL映射文件名”,指定了唯一的命名空间:子元素<select>、<insert>、<update>、<delete>中的信息是用于执行查询、添加、修改以及删除操作的配置。在定义的SQL语句中,“#{}”表示一个占位符。相当于“?”,而“#{id}”表示该占位符接收参数的名称为id。
5、创建MyBatis的配置文件
<?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>
<!-- 1、配置环境,默认环境id为mysql -->
<environments default="mysql">
<!-- 1.2配置id为mysql的数据库环境 -->
<environment id="mysql">
<!-- 使用JDBC事务管理 -->
<transactionManager type="JDBC" />
<!-- 使用数据库连接池 -->
<dataSource type="POOLED">
<property name="driver" value="com.mysql.jdbc.Driver" />
<property name="url" value="jdbc:mysql://localhost:3306/mybatis" />
<property name="username" value="root" />
<property name="password" value="root" />
</dataSource>
</environment>
</environments>
<!-- 2、配置Mapper的位置 -->
<mappers>
<!-- 可以配置多个mapper -->
<mapper resource="com/itheima/po/CustomerMapper.xml" />
</mappers>
</configuration>
上述映射文件和配置文件都不需要读者完全手动编写,都可以从MyBatis使用手册中复制,然后做简单的修改。
6、创建测试类
1)加载配置文件
2)使用输入流读取配置文件
3)构建SqlSessionFactory对象
4)创建SqlSession对象,并执行数据库操作
5)关闭SqlSession对象
package com.itheima.po;
import java.io.InputStream;
import java.util.List;
import org.apache.ibatis.io.Resources;
import org.apache.ibatis.session.SqlSession;
import org.apache.ibatis.session.SqlSessionFactory;
import org.apache.ibatis.session.SqlSessionFactoryBuilder;
import org.junit.Test;
/**
* 入门程序测试类
*/
public class MybatisTest {
/**
* 根据用户编号查询用户信息
*/
@Test
public void findCustomerByIdTest() throws Exception {
// 1、读取配置文件
String resource = "mybatis-config.xml";
InputStream inputStream = Resources.getResourceAsStream(resource);
// 2、根据配置文件构建SqlSessionFactory
SqlSessionFactory sqlSessionFactory = new SqlSessionFactoryBuilder().build(inputStream);
// 3、通过sqlSessionFactory创建sqlSession
SqlSession sqlSession = sqlSessionFactory.openSession();
// 4、sqlSession执行映射文件中定义的sql,并返回映射结果
// 第一个参数是sql的id,第二个参数是传入给sql的占位符的参数
Customer customer = sqlSession.selectOne("com.itheima.po.Customer.findCustomerById", 1);
// 打印输出结果
System.out.println(customer.toString());
// 关闭sqlSession
sqlSession.close();
}
/**
*
* 根据用户名称,模糊查询用户信息列表
*/
@Test
public void findCustomerByName() throws Exception {
// 1、读取配置文件信息
String resource = "mybatis-config.xml";
InputStream inputStream = Resources.getResourceAsStream(resource);
// 2、根据配置文件构建SqlSessionFactory
SqlSessionFactory sqlSessionFactory = new SqlSessionFactoryBuilder().build(inputStream);
// 3、通过sqlSessionFactory创建sqlSession
SqlSession sqlSession = sqlSessionFactory.openSession();
// 4、sqlSession执行映射文件中定义的SQL,并返回映射结果
// 第一个参数是sql的id,第二个参数是传入给sql的占位符参数
List<Customer> customers = sqlSession.selectList("com.itheima.po.Customer.findCustomerByName", "j");
for (Customer customer : customers) {
// 打印输出结果
System.out.println(customer);
}
// 5、关闭sqlSession
sqlSession.close();
}
/**
*
* 添加客户
*/
@Test
public void addCustomer() throws Exception {
// 1、读取配置文件信息
String resource = "mybatis-config.xml";
InputStream inputStream = Resources.getResourceAsStream(resource);
// 2、根据配置文件构建SqlSessionFactory
SqlSessionFactory sqlSessionFactory = new SqlSessionFactoryBuilder().build(inputStream);
// 3、通过sqlSessionFactory创建sqlSession
SqlSession sqlSession = sqlSessionFactory.openSession();
//4、执行添加操作
//4.1创建Customer对象,并向对象在添加数据
Customer customer = new Customer();
customer.setUsername("rose");
customer.setJobs("student");
customer.setPhone("13333350921");
//4.2执行sqlsession的插入方法,返回sql语句影响的行数
int rows = sqlSession.insert("com.itheima.po.Customer.addCustomer", customer);
//4.3通过返回结果判断插入操作是否执行成功
if(rows>0) {
System.out.println("您成功插入了"+rows+"条数据!");
}else {
System.out.println("执行插入操作失败!!!");
}
//4.4提交事务——增删改都涉及到事务,需要提交事务
sqlSession.commit();
// 5、关闭sqlSession
sqlSession.close();
}
/**
*
* 更新客户
*/
@Test
public void updateCustomer() throws Exception {
// 1、读取配置文件信息
String resource = "mybatis-config.xml";
InputStream inputStream = Resources.getResourceAsStream(resource);
// 2、根据配置文件构建SqlSessionFactory
SqlSessionFactory sqlSessionFactory = new SqlSessionFactoryBuilder().build(inputStream);
// 3、通过sqlSessionFactory创建sqlSession
SqlSession sqlSession = sqlSessionFactory.openSession();
//4、执行添加操作
//4.1创建Customer对象,并向对象在添加数据
Customer customer = new Customer();
customer.setId(4);
customer.setUsername("rose");
customer.setJobs("programmer");
customer.setPhone("13311111111");
//4.2执行sqlsession的更新方法,返回sql语句影响的行数
int rows = sqlSession.insert("com.itheima.po.Customer.updateCustomer", customer);
//4.3通过返回结果判断更新操作是否执行成功
if(rows>0) {
System.out.println("您成功更新了"+rows+"条数据!");
}else {
System.out.println("执行更新操作失败!!!");
}
//4.4提交事务——增删改都涉及到事务,需要提交事务
sqlSession.commit();
// 5、关闭sqlSession
sqlSession.close();
}
/**
*
* 删除客户
*/
@Test
public void deleteCustomer() throws Exception {
// 1、读取配置文件信息
String resource = "mybatis-config.xml";
InputStream inputStream = Resources.getResourceAsStream(resource);
// 2、根据配置文件构建SqlSessionFactory
SqlSessionFactory sqlSessionFactory = new SqlSessionFactoryBuilder().build(inputStream);
// 3、通过sqlSessionFactory创建sqlSession
SqlSession sqlSession = sqlSessionFactory.openSession();
//4、执行添加操作
//4.2执行sqlsession的删除方法,返回sql语句影响的行数
int rows = sqlSession.insert("com.itheima.po.Customer.deleteCustomer", 4);
//4.3通过返回结果判断删除操作是否执行成功
if(rows>0) {
System.out.println("您成功删除了"+rows+"条数据!");
}else {
System.out.println("执行删除操作失败!!!");
}
//4.4提交事务——增删改都涉及到事务,需要提交事务
sqlSession.commit();
// 5、关闭sqlSession
sqlSession.close();
}
}