您好,登錄后才能下訂單哦!
這篇文章主要講解了“MyBatis框架零基礎(chǔ)快速入門案例分析”,文中的講解內(nèi)容簡單清晰,易于學(xué)習(xí)與理解,下面請(qǐng)大家跟著小編的思路慢慢深入,一起來研究和學(xué)習(xí)“MyBatis框架零基礎(chǔ)快速入門案例分析”吧!
數(shù)據(jù)庫名ssm,數(shù)據(jù)表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)
1、pom.xml加入maven坐標(biāo)
<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 文件都會(huì)掃描到--> <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>
創(chuàng)建包 com.Example.domain, 包中創(chuàng)建 Student 類
package com.bjpowernode.domain; /** * <p>Description: 實(shí)體類 </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 }
創(chuàng)建 com.Example.dao 包,創(chuàng)建 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 { /*查詢所有數(shù)據(jù)*/ List<Student> selectStudents(); }
在 dao 包中創(chuàng)建文件 StudentDao.xml
要 StudentDao.xml 文件名稱和接口 StudentDao 一樣,區(qū)分大小寫的一 樣。
<?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>: 查詢數(shù)據(jù), 標(biāo)簽中必須是 select 語句 id: sql 語句的自定義名稱,推薦使用 dao 接口中方法名稱, 使用名稱表示要執(zhí)行的 sql 語句 resultType: 查詢語句的返回結(jié)果數(shù)據(jù)類型,使用全限定類名 --> <select id="selectStudents" resultType="com.Example.domain.Student"> <!--要執(zhí)行的 sql 語句--> select id,name,email,age from student </select> </mapper>
項(xiàng)目 src/main 下創(chuàng)建 resources 目錄,設(shè)置 resources 目錄為 resources root
創(chuàng)建主配置文件:名稱為 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 環(huán)境--> <environments default="mysql"> <!--id:數(shù)據(jù)源的名稱--> <environment id="mysql"> <!--配置事務(wù)類型:使用 JDBC 事務(wù)(使用 Connection 的提交和回 滾)--> <transactionManager type="JDBC"/> <!--數(shù)據(jù)源 dataSource:創(chuàng)建數(shù)據(jù)庫 Connection 對(duì)象 type: POOLED 使用數(shù)據(jù)庫的連接池 --> <dataSource type="POOLED"> <!--連接數(shù)據(jù)庫的四個(gè)要素--> <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 要執(zhí)行的 sql 語句的位置--> <mapper resource="com/Example/dao/StudentDao.xml"/> </mappers> </configuration>
支持中文的url
jdbc:mysql://localhost:3306/ssm?useUnicode=true&characterEncoding=utf-8
src/test/java/com/Example/ 創(chuàng)建 MyBatisTest.java 文件
/* * mybatis 入門 */ @Test public void testStart() throws IOException { //1.mybatis 主配置文件 String config = "mybatis-config.xml"; //2.讀取配置文件 InputStream in = Resources.getResourceAsStream(config); //3.創(chuàng)建 SqlSessionFactory 對(duì)象,目的是獲取 SqlSession SqlSessionFactory factory = new SqlSessionFactoryBuilder().build(in); //4.獲取 SqlSession,SqlSession 能執(zhí)行 sql 語句 SqlSession session = factory.openSession(); //5.執(zhí)行 SqlSession 的 selectList() List<Student> studentList = session.selectList("com.bjpowernode.dao.StudentDao.selectStudents"); //6.循環(huán)輸出查詢結(jié)果 studentList.forEach( student -> System.out.println(student)); //7.關(guān)閉 SqlSession,釋放資源 session.close(); }
List<Student> studentList = session.selectList("com.bjpowernode.dao.StudentDao.selectStudents"); 近似等價(jià)的 jdbc 代碼 Connection conn = 獲取連接對(duì)象 String sql=” select id,name,email,age from student” PreparedStatement ps = conn.prepareStatement(sql); ResultSet rs = ps.executeQuery();
mybatis.xml 文件加入日志配置,可以在控制臺(tái)輸出執(zhí)行的 sql 語句和參數(shù)
<settings> <setting name="logImpl" value="STDOUT_LOGGING" /> </settings>
(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.創(chuàng)建 SqlSessionFactory 對(duì)象 SqlSessionFactory factory = new SqlSessionFactoryBuilder().build(in); //4.獲取 SqlSession SqlSession session = factory.openSession(); //5.創(chuàng)建保存數(shù)據(jù)的對(duì)象 Student student = new Student(); student.setId(1005); student.setName("張麗"); student.setEmail("zhangli@163.com"); student.setAge(20); //6.執(zhí)行插入 insert int rows = session.insert( "com.bjpowernode.dao.StudentDao.insertStudent",student); //7.提交事務(wù) session.commit(); System.out.println("增加記錄的行數(shù):"+rows); //8.關(guān)閉 SqlSession session.close(); }
感謝各位的閱讀,以上就是“MyBatis框架零基礎(chǔ)快速入門案例分析”的內(nèi)容了,經(jīng)過本文的學(xué)習(xí)后,相信大家對(duì)MyBatis框架零基礎(chǔ)快速入門案例分析這一問題有了更深刻的體會(huì),具體使用情況還需要大家實(shí)踐驗(yàn)證。這里是億速云,小編將為大家推送更多相關(guān)知識(shí)點(diǎn)的文章,歡迎關(guān)注!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請(qǐng)聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。