首頁 > 軟體

MyBatis框架零基礎快速入門案例詳解

2022-04-07 13:00:21

MyBatis下載地址:https://github.com/mybatis/mybatis-3/releases

一、建立資料庫和表

資料庫名ssm,資料表student

mysql> create database ssm;
Query OK, 1 row affected (0.01 sec)
mysql> use ssm
Database changed
mysql> CREATE TABLE `student` (
    ->  `id` int(11) NOT NULL ,
    ->  `name` varchar(255) DEFAULT NULL,
    ->  `email` varchar(255) DEFAULT NULL,
    ->  `age` int(11) DEFAULT NULL,
    ->  PRIMARY KEY (`id`)
    -> ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
Query OK, 0 rows affected, 3 warnings (0.03 sec)

二、建立maven工程

1、pom.xml加入maven座標

<dependencies>
 <dependency>
<groupId>junit</groupId>
 <artifactId>junit</artifactId>
 <version>4.11</version>
 <scope>test</scope>
</dependency>
 <dependency>
 <groupId>org.mybatis</groupId>
 <artifactId>mybatis</artifactId>
 <version>3.5.1</version>
</dependency>
 <dependency>
 <groupId>mysql</groupId>
 <artifactId>mysql-connector-java</artifactId>
 <version>5.1.9</version>
 </dependency>
 </dependencies>

2、加入maven外掛

<build>
<resources>
 <resource>
 <directory>src/main/java</directory><!--所在的目錄-->
 <includes><!--包括目錄下的.properties,.xml 檔案都會掃描到-->
 <include>**/*.properties</include>
 <include>**/*.xml</include>
 </includes>
 <filtering>false</filtering>
 </resource>
</resources>
 <plugins>
 <plugin>
 <artifactId>maven-compiler-plugin</artifactId>
 <version>3.1</version>
 <configuration>
 <source>1.8</source>
 <target>1.8</target>
 </configuration>
 </plugin>
 </plugins>
</build>

三、程式碼編寫

1、編寫Student實體類

建立包 com.Example.domain, 包中建立 Student 類

package com.bjpowernode.domain;
/** 
 * <p>Description: 實體類 </p> 
 * <p>Company: http://www.bjpowernode.com 
 */ 
public class Student {
 //屬性名和列名一樣 
 private Integer id;
 private String name;
 private String email;
 private Integer age;
 // set ,get , toString
}

2、編寫DAO介面StudentDao

建立 com.Example.dao 包,建立 StudentDao 介面

package com.bjpowernode.dao;
import com.bjpowernode.domain.Student;
import java.util.List;
/* 
 * <p>Description: Dao 介面 </p> 
 * <p>Company: http://www.bjpowernode.com 
 */ 
public interface StudentDao {
 /*查詢所有資料*/ 
 List<Student> selectStudents();
}

3、編寫DAO介面Mapper對映檔案StudentDao.xml。

  • 在 dao 包中建立檔案 StudentDao.xml
  • 要 StudentDao.xml 檔名稱和介面 StudentDao 一樣,區分大小寫的一 樣。
<?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:必須有值,自定義的唯一字串 
 推薦使用:dao 介面的全限定名稱 
--> 
<mapper namespace="com.Example.dao.StudentDao">
 <!-- 
 <select>: 查詢資料, 標籤中必須是 select 語句 
 id: sql 語句的自定義名稱,推薦使用 dao 介面中方法名稱, 
 使用名稱表示要執行的 sql 語句 
 resultType: 查詢語句的返回結果資料型別,使用全限定類名 
 --> 
 <select id="selectStudents" 
resultType="com.Example.domain.Student">
 <!--要執行的 sql 語句--> 
 select id,name,email,age from student
 </select>
</mapper>

4、建立MyBatis主組態檔

專案 src/main 下建立 resources 目錄,設定 resources 目錄為 resources root

建立主組態檔:名稱為 mybatis.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>
 <!--設定 mybatis 環境--> 
 <environments default="mysql">
 <!--id:資料來源的名稱--> 
 <environment id="mysql">
 <!--設定事務型別:使用 JDBC 事務(使用 Connection 的提交和回
滾)--> 
 <transactionManager type="JDBC"/>
 <!--資料來源 dataSource:建立資料庫 Connection 物件 
 type: POOLED 使用資料庫的連線池 
 --> 
 <dataSource type="POOLED">
 <!--連線資料庫的四個要素--> 
 <property name="driver" value="com.mysql.jdbc.Driver"/>
 <property name="url" 
value="jdbc:mysql://localhost:3306/ssm"/>
 <property name="username" value="root"/>
 <property name="password" value="123456"/>
 </dataSource>
 </environment>
 </environments>
 <mappers>
 <!--告訴 mybatis 要執行的 sql 語句的位置--> 
 <mapper resource="com/Example/dao/StudentDao.xml"/>
 </mappers>
</configuration>

支援中文的url

jdbc:mysql://localhost:3306/ssm?useUnicode=true&characterEncoding=utf-8 

四、建立測試類進行測試

1、建立測試類MyBatisTest

src/test/java/com/Example/ 建立 MyBatisTest.java 檔案

/* 
* mybatis 入門 
*/ 
@Test
public void testStart() throws IOException {
 //1.mybatis 主組態檔 
 String config = "mybatis-config.xml";
 //2.讀取組態檔 
 InputStream in = Resources.getResourceAsStream(config);
 //3.建立 SqlSessionFactory 物件,目的是獲取 SqlSession 
 SqlSessionFactory factory = new SqlSessionFactoryBuilder().build(in);
 //4.獲取 SqlSession,SqlSession 能執行 sql 語句 
 SqlSession session = factory.openSession();
 //5.執行 SqlSession 的 selectList() 
 List<Student> studentList = 
session.selectList("com.bjpowernode.dao.StudentDao.selectStudents");
 //6.迴圈輸出查詢結果 
 studentList.forEach( student -> System.out.println(student));
 //7.關閉 SqlSession,釋放資源 
 session.close();
}

List<Student> studentList = 
session.selectList("com.bjpowernode.dao.StudentDao.selectStudents");
近似等價的 jdbc 程式碼
Connection conn = 獲取連線物件
String sql=” select id,name,email,age from student”
PreparedStatement ps = conn.prepareStatement(sql);
ResultSet rs = ps.executeQuery();

2、設定紀錄檔功能

mybatis.xml 檔案加入紀錄檔設定,可以在控制檯輸出執行的 sql 語句和引數

<settings>
 <setting name="logImpl" value="STDOUT_LOGGING" />
</settings>

五、增刪改操作

insert操作

(1)StudentDAO介面中的方法

int insertStudent(Student student);

(2)StudentDAO.xml加入sql語句

<insert id="insertStudent">
 insert into student(id,name,email,age) 
values(#{id},#{name},#{email},#{age})
</insert>

(3)增加測試方法

@Test
public void testInsert() throws IOException {
 //1.mybatis 主組態檔 
 String config = "mybatis-config.xml";
 //2.讀取組態檔 
 InputStream in = Resources.getResourceAsStream(config);
 //3.建立 SqlSessionFactory 物件 
 SqlSessionFactory factory = new SqlSessionFactoryBuilder().build(in);
 //4.獲取 SqlSession 
 SqlSession session = factory.openSession();
 //5.建立儲存資料的物件 
 Student student = new Student();
 student.setId(1005);
 student.setName("張麗");
 student.setEmail("zhangli@163.com");
 student.setAge(20);
 //6.執行插入 insert 
 int rows = session.insert(
"com.bjpowernode.dao.StudentDao.insertStudent",student);
 //7.提交事務 
 session.commit();
 System.out.println("增加記錄的行數:"+rows);
 //8.關閉 SqlSession 
 session.close();
}

到此這篇關於MyBatis框架零基礎快速入門案例詳解的文章就介紹到這了,更多相關MyBatis 案例內容請搜尋it145.com以前的文章或繼續瀏覽下面的相關文章希望大家以後多多支援it145.com!


IT145.com E-mail:sddin#qq.com