mybatis學習筆記一:增刪改查
阿新 • • 發佈:2019-02-09
一、概述
Mybatis是一款優秀的持久層框架,它支援定製化sql、儲存過程以及高階對映。mybatis避免了幾乎所有的JDBC程式碼和手動設定引數以及獲取結果集。Mybatis可以使用簡單的XML或註解來配置和對映原生資訊,將介面和Java的POJOS對映成資料庫中的記錄。
二、入門
1、Maven構建mybatis(即匯入mybatis-x.x.x.jar)
<dependency> <groupId>org.mybatis</groupId> <artifactId>mybatis</artifactId> <version>3.4.6</version> </dependency>
2、新建mybatis-config.xml並構建SqlSessionFactory(即配置資料庫連線等設定)
<?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> <environments default="development"> <environment id="development"> <transactionManager type="JDBC"/> <!-- 事務管理 --> <dataSource type="POOLED"> <!-- 表示使用連線池技術--> <property name="driver" value="com.mysql.jdbc.Driver"/> <property name="url" value="***"/> <property name="username" value="***"/> <property name="password" value="***"/> </dataSource> </environment> </environments> <!--mapper對映,用於寫sql的地方--> <mappers> <mapper resource="userMapper.xml"/> </mappers> </configuration>
3、通過載入mybatis-config.xml,獲取SqlSession(用於執行sql)
String resource = "mybatis-config.xml"; InputStream inputStream = Resources.getResourceAsStream(resource); SqlSessionFactory sqlSessionFactory = new SqlSessionFactoryBuilder().build(inputStream); SqlSession session = sqlSessionFactory.openSession(); try{ // 業務邏輯,即通過mapper.xml進行資料庫操作(增刪改查) session.commit(); }finally { session.close(); }
4、配置mapper.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="userMapper">
<select id="selectEntity" resultType="Entity">
select * from entity where id = #{id}
</select>
<insert id="saveEntity" parameterType="Entity">
INSERT INTO entity (變數名) VALUE (#{引數值})
</insert>
<update id="updateEntity">
UPDATE entity set 變數名=#{引數值} where id = #{id}
</update>
<delete id="deleteEntity">
DELETE FROM entity where id=#{id}
</delete>
</mapper>
三、具體實現增刪改查
1、建立資料庫
CREATE TABLE `user` (
`id` int NOT NULL AUTO_INCREMENT ,
`user_name` varchar(32) NULL DEFAULT '' COMMENT '姓名' ,
`age` int(4) NULL DEFAULT 0 COMMENT '年齡' ,
PRIMARY KEY (`id`)
);
2、建立User實體類,並新增toString方法
public class User {
private Long id;
private String userName;
private int age;
public Long getId() {
return id;
}
public void setId(Long id) {
this.id = id;
}
public String getUserName() {
return userName;
}
public void setUserName(String userName) {
this.userName = userName;
}
public int getAge() {
return age;
}
public void setAge(int age) {
this.age = age;
}
@Override
public String toString() {
return "User{" +
"id=" + id +
", userName='" + userName + '\'' +
", age=" + age +
'}';
}
}
3、建立mybatis與資料庫連線(這裡需要匯入mysql相應的jar包)
<?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>
<environments default="development">
<environment id="development">
<transactionManager type="JDBC"/> <!-- 事務管理 -->
<dataSource type="POOLED"> <!-- 表示使用連線池技術-->
<property name="driver" value="com.mysql.jdbc.Driver"/>
<property name="url" value="jdbc:mysql://127.0.0.1:3306/test"/>
<property name="username" value="root"/>
<property name="password" value="123456"/>
</dataSource>
</environment>
</environments>
<!--mapper對映,用於寫sql的地方-->
<mappers>
<mapper resource="userMapper.xml"/>
</mappers>
</configuration>
4、建立userMpper.xml並新增新增的sql(放在mybatis-config.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">
<!--名稱空間,名稱空間+id為唯一標準 -->
<mapper namespace="userMapper">
<!-- parameterType引數型別,可以省略-->
<insert id="saveUser" parameterType="com.chensr.until.mybatis.User" >
INSERT INTO user (userName,age) VALUE (#{userName},#{age})
</insert>
注:Insert表示新增標籤,注意不要sql語句不加分號。傳入的引數會自動
5、建立新增user方法
@org.junit.Test
public void saveUser() throws Exception{
String resource = "mybatis-config.xml";
//載入配置檔案
InputStream inputStream = Resources.getResourceAsStream(resource);
//獲取sessionFactory
SqlSessionFactory sqlSessionFactory = new SqlSessionFactoryBuilder().build(inputStream);
//獲取SqlSession,openSession無參時,需要手動提交事務;如果為引數為true,則自動提交事務
SqlSession session = sqlSessionFactory.openSession();
try{
User user = new User();
user.setUserName("陳大爺");
user.setAge(30);
//執行新增方法,第一個引數為mapper.xml的唯一標識,第二個引數為執行sql所需的引數
session.insert("saveUser", user);
//提交事務
session.commit();
}finally {
session.close();
}
}
- 如果添加了log4j,可以在控制檯看到如下資訊,並且檢視資料庫可以看到新增資料成功
6、刪除user(從資料檢視新增的user的id,進行刪除)
- 在userMapper.xml新增刪除使用者配置
<delete id="deleteUser">
DELETE FROM user where user_name=#{user_name}
</delete>
注:這裡用的是delete標籤,當傳入引數只要一個時,#{xxx},裡面的名稱可以隨便取
- 新增刪除辦法
@org.junit.Test
public void deleteUser() throws Exception{
String resource = "mybatis-config.xml";
//載入配置檔案
InputStream inputStream = Resources.getResourceAsStream(resource);
//獲取sessionFactory
SqlSessionFactory sqlSessionFactory = new SqlSessionFactoryBuilder().build(inputStream);
//獲取SqlSession,openSession無參時,需要手動提交事務;如果為引數為true,則自動提交事務
SqlSession session = sqlSessionFactory.openSession();
try{
session.delete("deleteUser", "陳大爺");
//提交事務
session.commit();
}finally {
session.close();
}
}
- 控制檯可以看到如下資訊,並且資料庫資料被刪除
7、修改‘陳大爺’為18歲
- 在userMapper.xml新增修改配置
<update id="updateUser">
UPDATE user set age=#{age} where userName=#{userName}
</update>
注:這裡用的是update標籤
- 新增修改方法
@org.junit.Test
public void updateUser()throws Exception{
String resource = "mybatis-config.xml";
//載入配置檔案
InputStream inputStream = Resources.getResourceAsStream(resource);
//獲取sessionFactory
SqlSessionFactory sqlSessionFactory = new SqlSessionFactoryBuilder().build(inputStream);
//獲取SqlSession,openSession無參時,需要手動提交事務;如果為引數為true,則自動提交事務
SqlSession session = sqlSessionFactory.openSession();
try{
User user = new User();
user.setUserName("陳大爺");
user.setAge(18);
session.update("updateUser", user);
//提交事務
session.commit();
}finally {
session.close();
}
}
- 控制檯可以看到如下資訊,並且資料庫資料被修改
8、根據使用者名稱查詢資料
- 在userMapper.xml新增查詢配置
<!-- resultType為返回型別 -->
<select id="selectUser" resultType="com.chensr.until.mybatis.User">
select id,user_name as userName, age from user where user_name = #{userName}
</select>
注:這裡用的是select標籤,並且user_name使用別名,因為資料庫沒辦法為user_name匹配到User類中的userName欄位
- 新增查詢方法
@org.junit.Test
public void selectUser() throws Exception{
String resource = "mybatis-config.xml";
//載入配置檔案
InputStream inputStream = Resources.getResourceAsStream(resource);
//獲取sessionFactory
SqlSessionFactory sqlSessionFactory = new SqlSessionFactoryBuilder().build(inputStream);
//獲取SqlSession,openSession無參時,需要手動提交事務;如果為引數為true,則自動提交事務
SqlSession session = sqlSessionFactory.openSession();
try{
//這裡表示只查詢一條資料
User user = session.selectOne("selectUser", "陳大爺");
System.out.println(user.toString());
}finally {
session.close();
}
}
- 控制檯可以看到如下資訊