Mybatis-9.28
環(huán)境:
- JDK1.8
- Mysql 5.7
- maven 3.6.1
- IDEA
回顧:
- JDBC
- Mysql
- Java基礎(chǔ)
- Maven
- Junit
SSM框架:配置文件的。 最好的方式:看官網(wǎng)文檔;
1垃沦、簡介
1.1罐氨、什么是Mybatis
- MyBatis 是一款優(yōu)秀的持久層框架
- 它支持定制化 SQL葫掉、存儲過程以及高級映射。
- MyBatis 避免了幾乎所有的 JDBC 代碼和手動設(shè)置參數(shù)以及獲取結(jié)果集。
- MyBatis 可以使用簡單的 XML 或注解來配置和映射原生類型、接口和 Java 的 POJO(Plain Old Java Objects塔次,普通老式 Java 對象)為數(shù)據(jù)庫中的記錄。
- MyBatis 本是apache的一個開源項目iBatis, 2010年這個項目由apache software foundation 遷移到了google code名秀,并且改名為MyBatis 励负。
- 2013年11月遷移到Github。
如何獲得Mybatis匕得?
-
maven倉庫:
<!-- https://mvnrepository.com/artifact/org.mybatis/mybatis --> <dependency> <groupId>org.mybatis</groupId> <artifactId>mybatis</artifactId> <version>3.5.2</version> </dependency>
1.2继榆、持久化
數(shù)據(jù)持久化
- 持久化就是將程序的數(shù)據(jù)在持久狀態(tài)和瞬時狀態(tài)轉(zhuǎn)化的過程
- 內(nèi)存:斷電即失
- 數(shù)據(jù)庫(Jdbc),io文件持久化。
- 生活:冷藏. 罐頭略吨。
為什么需要需要持久化集币?
有一些對象,不能讓他丟掉翠忠。
內(nèi)存太貴了
1.3鞠苟、持久層
Dao層,Service層负间,Controller層….
- 完成持久化工作的代碼塊
- 層界限十分明顯。
1.4 為什么需要Mybatis姜凄?
- 幫助程序猿將數(shù)據(jù)存入到數(shù)據(jù)庫中政溃。
- 方便
- 傳統(tǒng)的JDBC代碼太復(fù)雜了。簡化态秧《框架。自動化申鱼。
- 不用Mybatis也可以愤诱。更容易上手。 技術(shù)沒有高低之分
- 優(yōu)點:
- 簡單易學(xué)
- 靈活
- sql和代碼的分離捐友,提高了可維護(hù)性淫半。
- 提供映射標(biāo)簽,支持對象與數(shù)據(jù)庫的orm字段關(guān)系映射
- 提供對象關(guān)系映射標(biāo)簽匣砖,支持對象關(guān)系組建維護(hù)
- 提供xml標(biāo)簽科吭,支持編寫動態(tài)sql。
最重要的一點:使用的人多猴鲫!
Spring SpringMVC SpringBoot
2对人、第一個Mybatis程序
思路:搭建環(huán)境-->導(dǎo)入Mybatis-->編寫代碼-->測試!
2.1拂共、搭建環(huán)境
搭建數(shù)據(jù)庫
CREATE DATABASE `mybatis`;
USE `mybatis`;
CREATE TABLE `user`(
`id` INT(20) NOT NULL PRIMARY KEY,
`name` VARCHAR(30) DEFAULT NULL,
`pwd` VARCHAR(30) DEFAULT NULL
)ENGINE=INNODB DEFAULT CHARSET=utf8;
INSERT INTO `user`(`id`,`name`,`pwd`) VALUES
(1,'狂神','123456'),
(2,'張三','123456'),
(3,'李四','123890')
新建項目
新建一個普通的maven項目
刪除src目錄
-
導(dǎo)入maven依賴
<!--導(dǎo)入依賴--> <dependencies> <!--mysql驅(qū)動--> <dependency> <groupId>mysql</groupId> <artifactId>mysql-connector-java</artifactId> <version>5.1.47</version> </dependency> <!--mybatis--> <!-- https://mvnrepository.com/artifact/org.mybatis/mybatis --> <dependency> <groupId>org.mybatis</groupId> <artifactId>mybatis</artifactId> <version>3.5.2</version> </dependency> <!--junit--> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.12</version> </dependency> </dependencies>
2.2牺弄、創(chuàng)建一個模塊
-
編寫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核心配置文件--> <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://localhost:3306/mybatis?useSSL=true&useUnicode=true&characterEncoding=UTF-8"/> <property name="username" value="root"/> <property name="password" value="123456"/> </dataSource> </environment> </environments> </configuration>
-
編寫mybatis工具類
//sqlSessionFactory --> sqlSession public class MybatisUtils { private static SqlSessionFactory sqlSessionFactory; static{ try { //使用Mybatis第一步:獲取sqlSessionFactory對象 String resource = "mybatis-config.xml"; InputStream inputStream = Resources.getResourceAsStream(resource); sqlSessionFactory = new SqlSessionFactoryBuilder().build(inputStream); } catch (IOException e) { e.printStackTrace(); } } //既然有了 SqlSessionFactory,顧名思義宜狐,我們就可以從中獲得 SqlSession 的實例了势告。 // SqlSession 完全包含了面向數(shù)據(jù)庫執(zhí)行 SQL 命令所需的所有方法。 public static SqlSession getSqlSession(){ return sqlSessionFactory.openSession(); } }
2.3抚恒、編寫代碼
-
實體類
package com.kuang.pojo; //實體類 public class User { private int id; private String name; private String pwd; public User() { } public User(int id, String name, String pwd) { this.id = id; this.name = name; this.pwd = pwd; } public int getId() { return id; } public void setId(int id) { this.id = id; } public String getName() { return name; } public void setName(String name) { this.name = name; } public String getPwd() { return pwd; } public void setPwd(String pwd) { this.pwd = pwd; } @Override public String toString() { return "User{" + "id=" + id + ", name='" + name + '\'' + ", pwd='" + pwd + '\'' + '}'; } }
-
Dao接口
public interface UserDao { List<User> getUserList(); }
-
接口實現(xiàn)類由原來的UserDaoImpl轉(zhuǎn)變?yōu)橐粋€ Mapper配置文件.
<?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=綁定一個對應(yīng)的Dao/Mapper接口--> <mapper namespace="com.kuang.dao.UserDao"> <!--select查詢語句--> <select id="getUserList" resultType="com.kuang.pojo.User"> select * from mybatis.user </select> </mapper>
2.4培慌、測試
注意點:
org.apache.ibatis.binding.BindingException: Type interface com.kuang.dao.UserDao is not known to the MapperRegistry.
MapperRegistry是什么?
核心配置文件中注冊 mappers
-
junit測試
@Test public void test(){ //第一步:獲得SqlSession對象 SqlSession sqlSession = MybatisUtils.getSqlSession(); //方式一:getMapper UserDao userDao = sqlSession.getMapper(UserDao.class); List<User> userList = userDao.getUserList(); for (User user : userList) { System.out.println(user); } //關(guān)閉SqlSession sqlSession.close(); }
你們可以能會遇到的問題:
- 配置文件沒有注冊
- 綁定接口錯誤柑爸。
- 方法名不對
- 返回類型不對
- Maven導(dǎo)出資源問題
3吵护、CRUD
1、namespace
namespace中的包名要和 Dao/mapper 接口的包名一致!
2馅而、select
選擇祥诽,查詢語句;
- id : 就是對應(yīng)的namespace中的方法名;
- resultType:Sql語句執(zhí)行的返回值瓮恭!
- parameterType : 參數(shù)類型雄坪!
-
編寫接口
//根據(jù)ID查詢用戶 User getUserById(int id);
-
編寫對應(yīng)的mapper中的sql語句
<select id="getUserById" parameterType="int" resultType="com.kuang.pojo.User"> select * from mybatis.user where id = #{id} </select>
-
測試
@Test public void getUserById() { SqlSession sqlSession = MybatisUtils.getSqlSession(); UserMapper mapper = sqlSession.getMapper(UserMapper.class); User user = mapper.getUserById(1); System.out.println(user); sqlSession.close(); }
3、Insert
<!--對象中的屬性屯蹦,可以直接取出來-->
<insert id="addUser" parameterType="com.kuang.pojo.User">
insert into mybatis.user (id, name, pwd) values (#{id},#{name},#{pwd});
</insert>
4维哈、update
<update id="updateUser" parameterType="com.kuang.pojo.User">
update mybatis.user set name=#{name},pwd=#{pwd} where id = #{id} ;
</update>
5、Delete
<delete id="deleteUser" parameterType="int">
delete from mybatis.user where id = #{id};
</delete>
注意點:
- 增刪改需要提交事務(wù)登澜!
6阔挠、分析錯誤
- 標(biāo)簽不要匹配錯
- resource 綁定mapper,需要使用路徑脑蠕!
- 程序配置文件必須符合規(guī)范购撼!
- NullPointerException,沒有注冊到資源!
- 輸出的xml文件中存在中文亂碼問題谴仙!
- maven資源沒有導(dǎo)出問題迂求!
7、萬能Map
假設(shè)晃跺,我們的實體類揩局,或者數(shù)據(jù)庫中的表,字段或者參數(shù)過多掀虎,我們應(yīng)當(dāng)考慮使用Map谐腰!
//萬能的Map
int addUser2(Map<String,Object> map);
<!--對象中的屬性,可以直接取出來 傳遞map的key-->
<insert id="addUser" parameterType="map">
insert into mybatis.user (id, pwd) values (#{userid},#{passWord});
</insert>
@Test
public void addUser2(){
SqlSession sqlSession = MybatisUtils.getSqlSession();
UserMapper mapper = sqlSession.getMapper(UserMapper.class);
Map<String, Object> map = new HashMap<String, Object>();
map.put("userid",5);
map.put("passWord","2222333");
mapper.addUser2(map);
sqlSession.close();
}
Map傳遞參數(shù)涩盾,直接在sql中取出key即可十气! 【parameterType="map"】
對象傳遞參數(shù),直接在sql中取對象的屬性即可春霍!【parameterType="Object"】
只有一個基本類型參數(shù)的情況下砸西,可以直接在sql中取到!
多個參數(shù)用Map址儒,或者注解芹枷!
8、思考題
模糊查詢怎么寫莲趣?
-
Java代碼執(zhí)行的時候鸳慈,傳遞通配符 % %
List<User> userList = mapper.getUserLike("%李%");
-
在sql拼接中使用通配符!
select * from mybatis.user where name like "%"#{value}"%"
4喧伞、配置解析
1走芋、核心配置文件
mybatis-config.xml
-
MyBatis 的配置文件包含了會深深影響 MyBatis 行為的設(shè)置和屬性信息绩郎。
configuration(配置) properties(屬性) settings(設(shè)置) typeAliases(類型別名) typeHandlers(類型處理器) objectFactory(對象工廠) plugins(插件) environments(環(huán)境配置) environment(環(huán)境變量) transactionManager(事務(wù)管理器) dataSource(數(shù)據(jù)源) databaseIdProvider(數(shù)據(jù)庫廠商標(biāo)識) mappers(映射器)
2、環(huán)境配置(environments)
MyBatis 可以配置成適應(yīng)多種環(huán)境
不過要記孜坛选:盡管可以配置多個環(huán)境肋杖,但每個 SqlSessionFactory 實例只能選擇一種環(huán)境。
學(xué)會使用配置多套運行環(huán)境挖函!
Mybatis默認(rèn)的事務(wù)管理器就是 JDBC 状植, 連接池 : POOLED
3、屬性(properties)
我們可以通過properties屬性來實現(xiàn)引用配置文件
這些屬性都是可外部配置且可動態(tài)替換的怨喘,既可以在典型的 Java 屬性文件中配置津畸,亦可通過 properties 元素的子元素來傳遞”亓【db.properties】
編寫一個配置文件
db.properties
driver=com.mysql.jdbc.Driver
url=jdbc:mysql://localhost:3306/mybatis?useSSL=true&useUnicode=true&characterEncoding=UTF-8
username=root
password=123456
在核心配置文件中映入
<!--引入外部配置文件-->
<properties resource="db.properties">
<property name="username" value="root"/>
<property name="pwd" value="11111"/>
</properties>
- 可以直接引入外部文件
- 可以在其中增加一些屬性配置
- 如果兩個文件有同一個字段肉拓,優(yōu)先使用外部配置文件的!
4棚赔、類型別名(typeAliases)
- 類型別名是為 Java 類型設(shè)置一個短的名字帝簇∨枪‘
- 存在的意義僅在于用來減少類完全限定名的冗余靠益。
<!--可以給實體類起別名-->
<typeAliases>
<typeAlias type="com.kuang.pojo.User" alias="User"/>
</typeAliases>
也可以指定一個包名,MyBatis 會在包名下面搜索需要的 Java Bean残揉,比如:
掃描實體類的包胧后,它的默認(rèn)別名就為這個類的 類名,首字母小寫抱环!
<!--可以給實體類起別名-->
<typeAliases>
<package name="com.kuang.pojo"/>
</typeAliases>
在實體類比較少的時候壳快,使用第一種方式。
如果實體類十分多镇草,建議使用第二種眶痰。
第一種可以DIY別名,第二種則·不行·梯啤,如果非要改竖伯,需要在實體上增加注解
@Alias("user")
public class User {}
5、設(shè)置
這是 MyBatis 中極為重要的調(diào)整設(shè)置因宇,它們會改變 MyBatis 的運行時行為七婴。
6、其他配置
- typeHandlers(類型處理器)
- objectFactory(對象工廠)
- plugins插件
- mybatis-generator-core
- mybatis-plus
- 通用mapper
7察滑、映射器(mappers)
MapperRegistry:注冊綁定我們的Mapper文件打厘;
方式一: 【推薦使用】
<!--每一個Mapper.XML都需要在Mybatis核心配置文件中注冊!-->
<mappers>
<mapper resource="com/kuang/dao/UserMapper.xml"/>
</mappers>
方式二:使用class文件綁定注冊
<!--每一個Mapper.XML都需要在Mybatis核心配置文件中注冊贺辰!-->
<mappers>
<mapper class="com.kuang.dao.UserMapper"/>
</mappers>
注意點:
- 接口和他的Mapper配置文件必須同名户盯!
- 接口和他的Mapper配置文件必須在同一個包下嵌施!
方式三:使用掃描包進(jìn)行注入綁定
<!--每一個Mapper.XML都需要在Mybatis核心配置文件中注冊!-->
<mappers>
<package name="com.kuang.dao"/>
</mappers>
注意點:
- 接口和他的Mapper配置文件必須同名先舷!
- 接口和他的Mapper配置文件必須在同一個包下艰管!
練習(xí)時間:
- 將數(shù)據(jù)庫配置文件外部引入
- 實體類別名
- 保證UserMapper 接口 和 UserMapper .xml 改為一致!并且放在同一個包下蒋川!
8牲芋、生命周期和作用域
生命周期,和作用域捺球,是至關(guān)重要的缸浦,因為錯誤的使用會導(dǎo)致非常嚴(yán)重的并發(fā)問題。
SqlSessionFactoryBuilder:
- 一旦創(chuàng)建了 SqlSessionFactory氮兵,就不再需要它了
- 局部變量
SqlSessionFactory:
- 說白了就是可以想象為 :數(shù)據(jù)庫連接池
- SqlSessionFactory 一旦被創(chuàng)建就應(yīng)該在應(yīng)用的運行期間一直存在裂逐,沒有任何理由丟棄它或重新創(chuàng)建另一個實例。
- 因此 SqlSessionFactory 的最佳作用域是應(yīng)用作用域泣栈。
- 最簡單的就是使用單例模式或者靜態(tài)單例模式卜高。
SqlSession
- 連接到連接池的一個請求!
- SqlSession 的實例不是線程安全的南片,因此是不能被共享的掺涛,所以它的最佳的作用域是請求或方法作用域。
- 用完之后需要趕緊關(guān)閉疼进,否則資源被占用薪缆!
這里面的每一個Mapper,就代表一個具體的業(yè)務(wù)伞广!
5拣帽、解決屬性名和字段名不一致的問題
1、 問題
數(shù)據(jù)庫中的字段
新建一個項目嚼锄,拷貝之前的减拭,測試實體類字段不一致的情況
public class User {
private int id;
private String name;
private String password;
}
測試出現(xiàn)問題
// select * from mybatis.user where id = #{id}
//類型處理器
// select id,name,pwd from mybatis.user where id = #{id}
解決方法:
-
起別名
<select id="getUserById" resultType="com.kuang.pojo.User"> select id,name,pwd as password from mybatis.user where id = #{id} </select>
2、resultMap
結(jié)果集映射
id name pwd
id name password
<!--結(jié)果集映射-->
<resultMap id="UserMap" type="User">
<!--column數(shù)據(jù)庫中的字段区丑,property實體類中的屬性-->
<result column="id" property="id"/>
<result column="name" property="name"/>
<result column="pwd" property="password"/>
</resultMap>
<select id="getUserById" resultMap="UserMap">
select * from mybatis.user where id = #{id}
</select>
-
resultMap
元素是 MyBatis 中最重要最強大的元素 - ResultMap 的設(shè)計思想是拧粪,對于簡單的語句根本不需要配置顯式的結(jié)果映射,而對于復(fù)雜一點的語句只需要描述它們的關(guān)系就行了刊苍。
-
ResultMap
最優(yōu)秀的地方在于既们,雖然你已經(jīng)對它相當(dāng)了解了,但是根本就不需要顯式地用到他們正什。 - 如果世界總是這么簡單就好了啥纸。
6、日志
6.1婴氮、日志工廠
如果一個數(shù)據(jù)庫操作斯棒,出現(xiàn)了異常盾致,我們需要排錯。日志就是最好的助手荣暮!
曾經(jīng):sout 庭惜、debug
現(xiàn)在:日志工廠!
SLF4J
LOG4J 【掌握】
LOG4J2
JDK_LOGGING
COMMONS_LOGGING
STDOUT_LOGGING 【掌握】
NO_LOGGING
在Mybatis中具體使用那個一日志實現(xiàn)穗酥,在設(shè)置中設(shè)定护赊!
STDOUT_LOGGING標(biāo)準(zhǔn)日志輸出
在mybatis核心配置文件中,配置我們的日志砾跃!
<settings>
<setting name="logImpl" value="STDOUT_LOGGING"/>
</settings>
6.2骏啰、Log4j
什么是Log4j?
- Log4j是Apache的一個開源項目抽高,通過使用Log4j判耕,我們可以控制日志信息輸送的目的地是控制臺、文件翘骂、GUI組件
- 我們也可以控制每一條日志的輸出格式壁熄;
- 通過定義每一條日志信息的級別,我們能夠更加細(xì)致地控制日志的生成過程碳竟。
- 通過一個配置文件來靈活地進(jìn)行配置草丧,而不需要修改應(yīng)用的代碼。
-
先導(dǎo)入log4j的包
<!-- https://mvnrepository.com/artifact/log4j/log4j --> <dependency> <groupId>log4j</groupId> <artifactId>log4j</artifactId> <version>1.2.17</version> </dependency>
-
log4j.properties
#將等級為DEBUG的日志信息輸出到console和file這兩個目的地瞭亮,console和file的定義在下面的代碼 log4j.rootLogger=DEBUG,console,file #控制臺輸出的相關(guān)設(shè)置 log4j.appender.console = org.apache.log4j.ConsoleAppender log4j.appender.console.Target = System.out log4j.appender.console.Threshold=DEBUG log4j.appender.console.layout = org.apache.log4j.PatternLayout log4j.appender.console.layout.ConversionPattern=[%c]-%m%n #文件輸出的相關(guān)設(shè)置 log4j.appender.file = org.apache.log4j.RollingFileAppender log4j.appender.file.File=./log/kuang.log log4j.appender.file.MaxFileSize=10mb log4j.appender.file.Threshold=DEBUG log4j.appender.file.layout=org.apache.log4j.PatternLayout log4j.appender.file.layout.ConversionPattern=[%p][%d{yy-MM-dd}][%c]%m%n #日志輸出級別 log4j.logger.org.mybatis=DEBUG log4j.logger.java.sql=DEBUG log4j.logger.java.sql.Statement=DEBUG log4j.logger.java.sql.ResultSet=DEBUG log4j.logger.java.sql.PreparedStatement=DEBUG
-
配置log4j為日志的實現(xiàn)
<settings> <setting name="logImpl" value=""/> </settings>
Log4j的使用方仿!固棚,直接測試運行剛才的查詢
簡單使用
在要使用Log4j 的類中统翩,導(dǎo)入包 import org.apache.log4j.Logger;
-
日志對象,參數(shù)為當(dāng)前類的class
static Logger logger = Logger.getLogger(UserDaoTest.class);
-
日志級別
logger.info("info:進(jìn)入了testLog4j"); logger.debug("debug:進(jìn)入了testLog4j"); logger.error("error:進(jìn)入了testLog4j");
7此洲、分頁
思考:為什么要分頁厂汗?
- 減少數(shù)據(jù)的處理量
7.1、使用Limit分頁
語法:SELECT * from user limit startIndex,pageSize;
SELECT * from user limit 3; #[0,n]
使用Mybatis實現(xiàn)分頁呜师,核心SQL
-
接口
//分頁 List<User> getUserByLimit(Map<String,Integer> map);
-
Mapper.xml
<!--//分頁--> <select id="getUserByLimit" parameterType="map" resultMap="UserMap"> select * from mybatis.user limit #{startIndex},#{pageSize} </select>
-
測試
@Test public void getUserByLimit(){ SqlSession sqlSession = MybatisUtils.getSqlSession(); UserMapper mapper = sqlSession.getMapper(UserMapper.class); HashMap<String, Integer> map = new HashMap<String, Integer>(); map.put("startIndex",1); map.put("pageSize",2); List<User> userList = mapper.getUserByLimit(map); for (User user : userList) { System.out.println(user); } sqlSession.close(); }
7.2娶桦、RowBounds分頁
不再使用SQL實現(xiàn)分頁
-
接口
//分頁2 List<User> getUserByRowBounds();
-
mapper.xml
<!--分頁2--> <select id="getUserByRowBounds" resultMap="UserMap"> select * from mybatis.user </select>
-
測試
@Test public void getUserByRowBounds(){ SqlSession sqlSession = MybatisUtils.getSqlSession(); //RowBounds實現(xiàn) RowBounds rowBounds = new RowBounds(1, 2); //通過Java代碼層面實現(xiàn)分頁 List<User> userList = sqlSession.selectList("com.kuang.dao.UserMapper.getUserByRowBounds",null,rowBounds); for (User user : userList) { System.out.println(user); } sqlSession.close(); }
7.3、分頁插件
了解即可汁汗,萬一 以后公司的架構(gòu)師衷畦,說要使用,你需要知道它是什么東西知牌!
8祈争、使用注解開發(fā)
8.1、面向接口編程
- 大家之前都學(xué)過面向?qū)ο缶幊探谴纾矊W(xué)習(xí)過接口菩混,但在真正的開發(fā)中忿墅,很多時候我們會選擇面向接口編程
- 根本原因 : ==解耦== , 可拓展 , 提高復(fù)用 , 分層開發(fā)中 , 上層不用管具體的實現(xiàn) , 大家都遵守共同的標(biāo)準(zhǔn) , 使得開發(fā)變得容易 , 規(guī)范性更好
- 在一個面向?qū)ο蟮南到y(tǒng)中,系統(tǒng)的各種功能是由許許多多的不同對象協(xié)作完成的沮峡。在這種情況下疚脐,各個對象內(nèi)部是如何實現(xiàn)自己的,對系統(tǒng)設(shè)計人員來講就不那么重要了;
- 而各個對象之間的協(xié)作關(guān)系則成為系統(tǒng)設(shè)計的關(guān)鍵邢疙。小到不同類之間的通信棍弄,大到各模塊之間的交互,在系統(tǒng)設(shè)計之初都是要著重考慮的疟游,這也是系統(tǒng)設(shè)計的主要工作內(nèi)容照卦。面向接口編程就是指按照這種思想來編程。
關(guān)于接口的理解
- 接口從更深層次的理解乡摹,應(yīng)是定義(規(guī)范役耕,約束)與實現(xiàn)(名實分離的原則)的分離。
- 接口的本身反映了系統(tǒng)設(shè)計人員對系統(tǒng)的抽象理解聪廉。
- 接口應(yīng)有兩類:
- 第一類是對一個個體的抽象瞬痘,它可對應(yīng)為一個抽象體(abstract class);
- 第二類是對一個個體某一方面的抽象板熊,即形成一個抽象面(interface)框全;
- 一個體有可能有多個抽象面。抽象體與抽象面是有區(qū)別的干签。
三個面向區(qū)別
- 面向?qū)ο笫侵附虮纾覀兛紤]問題時,以對象為單位容劳,考慮它的屬性及方法 .
- 面向過程是指喘沿,我們考慮問題時,以一個具體的流程(事務(wù)過程)為單位竭贩,考慮它的實現(xiàn) .
- 接口設(shè)計與非接口設(shè)計是針對復(fù)用技術(shù)而言的蚜印,與面向?qū)ο螅ㄟ^程)不是一個問題.更多的體現(xiàn)就是對系統(tǒng)整體的架構(gòu)
8.2、使用注解開發(fā)
-
注解在接口上實現(xiàn)
@Select("select * from user") List<User> getUsers();
-
需要再核心配置文件中綁定接口留量!
<!--綁定接口--> <mappers> <mapper class="com.kuang.dao.UserMapper"/> </mappers>
測試
本質(zhì):反射機制實現(xiàn)
底層:動態(tài)代理窄赋!
Mybatis詳細(xì)的執(zhí)行流程!
8.3楼熄、CRUD
我們可以在工具類創(chuàng)建的時候?qū)崿F(xiàn)自動提交事務(wù)忆绰!
public static SqlSession getSqlSession(){
return sqlSessionFactory.openSession(true);
}
編寫接口,增加注解
public interface UserMapper {
@Select("select * from user")
List<User> getUsers();
// 方法存在多個參數(shù),所有的參數(shù)前面必須加上 @Param("id")注解
@Select("select * from user where id = #{id}")
User getUserByID(@Param("id") int id);
@Insert("insert into user(id,name,pwd) values (#{id},#{name},#{password})")
int addUser(User user);
@Update("update user set name=#{name},pwd=#{password} where id = #{id}")
int updateUser(User user);
@Delete("delete from user where id = #{uid}")
int deleteUser(@Param("uid") int id);
}
測試類
【注意:我們必須要講接口注冊綁定到我們的核心配置文件中!】
關(guān)于@Param() 注解
- 基本類型的參數(shù)或者String類型牺勾,需要加上
- 引用類型不需要加
- 如果只有一個基本類型的話冰评,可以忽略伐债,但是建議大家都加上预侯!
- 我們在SQL中引用的就是我們這里的 @Param() 中設(shè)定的屬性名!
#{} ${} 區(qū)別
9峰锁、Lombok
Project Lombok is a java library that automatically plugs into your editor and build tools, spicing up your java.
Never write another getter or equals method again, with one annotation your class has a fully featured builder, Automate your logging variables, and much more.
- java library
- plugs
- build tools
- with one annotation your class
使用步驟:
在IDEA中安裝Lombok插件萎馅!
-
在項目中導(dǎo)入lombok的jar包
<dependency> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> <version>1.18.10</version> </dependency>
-
在實體類上加注解即可!
@Data @AllArgsConstructor @NoArgsConstructor
@Getter and @Setter
@FieldNameConstants
@ToString
@EqualsAndHashCode
@AllArgsConstructor, @RequiredArgsConstructor and @NoArgsConstructor
@Log, @Log4j, @Log4j2, @Slf4j, @XSlf4j, @CommonsLog, @JBossLog, @Flogger
@Data
@Builder
@Singular
@Delegate
@Value
@Accessors
@Wither
@SneakyThrows
說明:
@Data:無參構(gòu)造虹蒋,get糜芳、set、tostring魄衅、hashcode峭竣,equals
@AllArgsConstructor
@NoArgsConstructor
@EqualsAndHashCode
@ToString
@Getter
10、多對一處理
多對一:
- 多個學(xué)生晃虫,對應(yīng)一個老師
- 對于學(xué)生這邊而言皆撩, 關(guān)聯(lián) .. 多個學(xué)生,關(guān)聯(lián)一個老師 【多對一】
- 對于老師而言哲银, 集合 扛吞, 一個老師,有很多學(xué)生 【一對多】
SQL:
CREATE TABLE `teacher` (
`id` INT(10) NOT NULL,
`name` VARCHAR(30) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=INNODB DEFAULT CHARSET=utf8
INSERT INTO teacher(`id`, `name`) VALUES (1, '秦老師');
CREATE TABLE `student` (
`id` INT(10) NOT NULL,
`name` VARCHAR(30) DEFAULT NULL,
`tid` INT(10) DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `fktid` (`tid`),
CONSTRAINT `fktid` FOREIGN KEY (`tid`) REFERENCES `teacher` (`id`)
) ENGINE=INNODB DEFAULT CHARSET=utf8
INSERT INTO `student` (`id`, `name`, `tid`) VALUES ('1', '小明', '1');
INSERT INTO `student` (`id`, `name`, `tid`) VALUES ('2', '小紅', '1');
INSERT INTO `student` (`id`, `name`, `tid`) VALUES ('3', '小張', '1');
INSERT INTO `student` (`id`, `name`, `tid`) VALUES ('4', '小李', '1');
INSERT INTO `student` (`id`, `name`, `tid`) VALUES ('5', '小王', '1');
測試環(huán)境搭建
- 導(dǎo)入lombok
- 新建實體類 Teacher荆责,Student
- 建立Mapper接口
- 建立Mapper.XML文件
- 在核心配置文件中綁定注冊我們的Mapper接口或者文件滥比!【方式很多,隨心選】
- 測試查詢是否能夠成功做院!
按照查詢嵌套處理
<!--
思路:
1. 查詢所有的學(xué)生信息
2. 根據(jù)查詢出來的學(xué)生的tid盲泛,尋找對應(yīng)的老師! 子查詢
-->
<select id="getStudent" resultMap="StudentTeacher">
select * from student
</select>
<resultMap id="StudentTeacher" type="Student">
<result property="id" column="id"/>
<result property="name" column="name"/>
<!--復(fù)雜的屬性键耕,我們需要單獨處理 對象: association 集合: collection -->
<association property="teacher" column="tid" javaType="Teacher" select="getTeacher"/>
</resultMap>
<select id="getTeacher" resultType="Teacher">
select * from teacher where id = #{id}
</select>
按照結(jié)果嵌套處理
<!--按照結(jié)果嵌套處理-->
<select id="getStudent2" resultMap="StudentTeacher2">
select s.id sid,s.name sname,t.name tname
from student s,teacher t
where s.tid = t.id;
</select>
<resultMap id="StudentTeacher2" type="Student">
<result property="id" column="sid"/>
<result property="name" column="sname"/>
<association property="teacher" javaType="Teacher">
<result property="name" column="tname"/>
</association>
</resultMap>
回顧Mysql 多對一查詢方式:
- 子查詢
- 聯(lián)表查詢
11寺滚、一對多處理
比如:一個老師擁有多個學(xué)生!
對于老師而言郁竟,就是一對多的關(guān)系!
環(huán)境搭建
- 環(huán)境搭建玛迄,和剛才一樣
實體類
@Data
public class Student {
private int id;
private String name;
private int tid;
}
@Data
public class Teacher {
private int id;
private String name;
//一個老師擁有多個學(xué)生
private List<Student> students;
}
按照結(jié)果嵌套處理
<!--按結(jié)果嵌套查詢-->
<select id="getTeacher" resultMap="TeacherStudent">
select s.id sid, s.name sname, t.name tname,t.id tid
from student s,teacher t
where s.tid = t.id and t.id = #{tid}
</select>
<resultMap id="TeacherStudent" type="Teacher">
<result property="id" column="tid"/>
<result property="name" column="tname"/>
<!--復(fù)雜的屬性由境,我們需要單獨處理 對象: association 集合: collection
javaType="" 指定屬性的類型棚亩!
集合中的泛型信息,我們使用ofType獲取
-->
<collection property="students" ofType="Student">
<result property="id" column="sid"/>
<result property="name" column="sname"/>
<result property="tid" column="tid"/>
</collection>
</resultMap>
按照查詢嵌套處理
<select id="getTeacher2" resultMap="TeacherStudent2">
select * from mybatis.teacher where id = #{tid}
</select>
<resultMap id="TeacherStudent2" type="Teacher">
<collection property="students" javaType="ArrayList" ofType="Student" select="getStudentByTeacherId" column="id"/>
</resultMap>
<select id="getStudentByTeacherId" resultType="Student">
select * from mybatis.student where tid = #{tid}
</select>
小結(jié)
- 關(guān)聯(lián) - association 【多對一】
- 集合 - collection 【一對多】
- javaType & ofType
- JavaType 用來指定實體類中屬性的類型
- ofType 用來指定映射到List或者集合中的 pojo類型虏杰,泛型中的約束類型讥蟆!
注意點:
- 保證SQL的可讀性,盡量保證通俗易懂
- 注意一對多和多對一中纺阔,屬性名和字段的問題瘸彤!
- 如果問題不好排查錯誤,可以使用日志 笛钝, 建議使用 Log4j
慢SQL 1s 1000s
面試高頻
- Mysql引擎
- InnoDB底層原理
- 索引
- 索引優(yōu)化质况!
12愕宋、動態(tài) SQL
==什么是動態(tài)SQL:動態(tài)SQL就是指根據(jù)不同的條件生成不同的SQL語句==
利用動態(tài) SQL 這一特性可以徹底擺脫這種痛苦。
動態(tài) SQL 元素和 JSTL 或基于類似 XML 的文本處理器相似结榄。在 MyBatis 之前的版本中中贝,有很多元素需要花時間了解。MyBatis 3 大大精簡了元素種類臼朗,現(xiàn)在只需學(xué)習(xí)原來一半的元素便可邻寿。MyBatis 采用功能強大的基于 OGNL 的表達(dá)式來淘汰其它大部分元素。
if
choose (when, otherwise)
trim (where, set)
foreach
搭建環(huán)境
CREATE TABLE `blog` (
`id` varchar(50) NOT NULL COMMENT '博客id',
`title` varchar(100) NOT NULL COMMENT '博客標(biāo)題',
`author` varchar(30) NOT NULL COMMENT '博客作者',
`create_time` datetime NOT NULL COMMENT '創(chuàng)建時間',
`views` int(30) NOT NULL COMMENT '瀏覽量'
) ENGINE=InnoDB DEFAULT CHARSET=utf8
創(chuàng)建一個基礎(chǔ)工程
導(dǎo)包
編寫配置文件
-
編寫實體類
@Data public class Blog { private int id; private String title; private String author; private Date createTime; private int views; }
編寫實體類對應(yīng)Mapper接口 和 Mapper.XML文件
IF
<select id="queryBlogIF" parameterType="map" resultType="blog">
select * from mybatis.blog where 1=1
<if test="title != null">
and title = #{title}
</if>
<if test="author != null">
and author = #{author}
</if>
</select>
choose (when, otherwise)
<select id="queryBlogChoose" parameterType="map" resultType="blog">
select * from mybatis.blog
<where>
<choose>
<when test="title != null">
title = #{title}
</when>
<when test="author != null">
and author = #{author}
</when>
<otherwise>
and views = #{views}
</otherwise>
</choose>
</where>
</select>
trim (where,set)
select * from mybatis.blog
<where>
<if test="title != null">
title = #{title}
</if>
<if test="author != null">
and author = #{author}
</if>
</where>
<update id="updateBlog" parameterType="map">
update mybatis.blog
<set>
<if test="title != null">
title = #{title},
</if>
<if test="author != null">
author = #{author}
</if>
</set>
where id = #{id}
</update>
==所謂的動態(tài)SQL视哑,本質(zhì)還是SQL語句 绣否, 只是我們可以在SQL層面,去執(zhí)行一個邏輯代碼==
if
where 挡毅, set 蒜撮, choose ,when
SQL片段
有的時候跪呈,我們可能會將一些功能的部分抽取出來淀弹,方便復(fù)用!
-
使用SQL標(biāo)簽抽取公共的部分
<sql id="if-title-author"> <if test="title != null"> title = #{title} </if> <if test="author != null"> and author = #{author} </if> </sql>
-
在需要使用的地方使用Include標(biāo)簽引用即可
<select id="queryBlogIF" parameterType="map" resultType="blog"> select * from mybatis.blog <where> <include refid="if-title-author"></include> </where> </select>
注意事項:
- 最好基于單表來定義SQL片段庆械!
- 不要存在where標(biāo)簽
Foreach
select * from user where 1=1 and
<foreach item="id" collection="ids"
open="(" separator="or" close=")">
#{id}
</foreach>
(id=1 or id=2 or id=3)
<!--
select * from mybatis.blog where 1=1 and (id=1 or id = 2 or id=3)
我們現(xiàn)在傳遞一個萬能的map 薇溃, 這map中可以存在一個集合!
-->
<select id="queryBlogForeach" parameterType="map" resultType="blog">
select * from mybatis.blog
<where>
<foreach collection="ids" item="id" open="and (" close=")" separator="or">
id = #{id}
</foreach>
</where>
</select>
==動態(tài)SQL就是在拼接SQL語句缭乘,我們只要保證SQL的正確性沐序,按照SQL的格式,去排列組合就可以了==
建議:
- 現(xiàn)在Mysql中寫出完整的SQL,再對應(yīng)的去修改成為我們的動態(tài)SQL實現(xiàn)通用即可堕绩!
13策幼、緩存 (了解)
13.1、簡介
查詢 : 連接數(shù)據(jù)庫 奴紧,耗資源特姐!
一次查詢的結(jié)果,給他暫存在一個可以直接取到的地方黍氮!--> 內(nèi)存 : 緩存
我們再次查詢相同數(shù)據(jù)的時候唐含,直接走緩存,就不用走數(shù)據(jù)庫了
-
什么是緩存 [ Cache ]沫浆?
- 存在內(nèi)存中的臨時數(shù)據(jù)捷枯。
- 將用戶經(jīng)常查詢的數(shù)據(jù)放在緩存(內(nèi)存)中,用戶去查詢數(shù)據(jù)就不用從磁盤上(關(guān)系型數(shù)據(jù)庫數(shù)據(jù)文件)查詢专执,從緩存中查詢淮捆,從而提高查詢效率,解決了高并發(fā)系統(tǒng)的性能問題。
-
為什么使用緩存攀痊?
- 減少和數(shù)據(jù)庫的交互次數(shù)桐腌,減少系統(tǒng)開銷,提高系統(tǒng)效率苟径。
-
什么樣的數(shù)據(jù)能使用緩存哩掺?
- 經(jīng)常查詢并且不經(jīng)常改變的數(shù)據(jù)∩裕【可以使用緩存】
13.2嚼吞、Mybatis緩存
- MyBatis包含一個非常強大的查詢緩存特性,它可以非常方便地定制和配置緩存蹬碧。緩存可以極大的提升查詢效率舱禽。
- MyBatis系統(tǒng)中默認(rèn)定義了兩級緩存:一級緩存和二級緩存
默認(rèn)情況下,只有一級緩存開啟恩沽。(SqlSession級別的緩存誊稚,也稱為本地緩存)
二級緩存需要手動開啟和配置,他是基于namespace級別的緩存罗心。
為了提高擴展性里伯,MyBatis定義了緩存接口Cache。我們可以通過實現(xiàn)Cache接口來自定義二級緩存
13.3渤闷、一級緩存
- 一級緩存也叫本地緩存: SqlSession
- 與數(shù)據(jù)庫同一次會話期間查詢到的數(shù)據(jù)會放在本地緩存中疾瓮。
- 以后如果需要獲取相同的數(shù)據(jù),直接從緩存中拿飒箭,沒必須再去查詢數(shù)據(jù)庫狼电;
測試步驟:
- 開啟日志!
- 測試在一個Sesion中查詢兩次相同記錄
- 查看日志輸出
緩存失效的情況:
查詢不同的東西
增刪改操作弦蹂,可能會改變原來的數(shù)據(jù)肩碟,所以必定會刷新緩存!
查詢不同的Mapper.xml
手動清理緩存凸椿!
小結(jié):一級緩存默認(rèn)是開啟的削祈,只在一次SqlSession中有效,也就是拿到連接到關(guān)閉連接這個區(qū)間段脑漫!
一級緩存就是一個Map髓抑。
13.4、二級緩存
- 二級緩存也叫全局緩存窿撬,一級緩存作用域太低了启昧,所以誕生了二級緩存
- 基于namespace級別的緩存,一個名稱空間劈伴,對應(yīng)一個二級緩存;
- 工作機制
- 一個會話查詢一條數(shù)據(jù),這個數(shù)據(jù)就會被放在當(dāng)前會話的一級緩存中跛璧;
- 如果當(dāng)前會話關(guān)閉了严里,這個會話對應(yīng)的一級緩存就沒了;但是我們想要的是追城,會話關(guān)閉了刹碾,一級緩存中的數(shù)據(jù)被保存到二級緩存中;
- 新的會話查詢信息座柱,就可以從二級緩存中獲取內(nèi)容迷帜;
- 不同的mapper查出的數(shù)據(jù)會放在自己對應(yīng)的緩存(map)中;
步驟:
-
開啟全局緩存
<!--顯示的開啟全局緩存--> <setting name="cacheEnabled" value="true"/>
-
在要使用二級緩存的Mapper中開啟
<!--在當(dāng)前Mapper.xml中使用二級緩存--> <cache/>
也可以自定義參數(shù)
<!--在當(dāng)前Mapper.xml中使用二級緩存--> <cache eviction="FIFO" flushInterval="60000" size="512" readOnly="true"/>
-
測試
-
問題:我們需要將實體類序列化色洞!否則就會報錯戏锹!
Caused by: java.io.NotSerializableException: com.kuang.pojo.User
-
小結(jié):
- 只要開啟了二級緩存,在同一個Mapper下就有效
- 所有的數(shù)據(jù)都會先放在一級緩存中火诸;
- 只有當(dāng)會話提交锦针,或者關(guān)閉的時候,才會提交到二級緩沖中置蜀!
13.5奈搜、緩存原理
13.6、自定義緩存-ehcache
Ehcache是一種廣泛使用的開源Java分布式緩存盯荤。主要面向通用緩存
要在程序中使用ehcache馋吗,先要導(dǎo)包!
<!-- https://mvnrepository.com/artifact/org.mybatis.caches/mybatis-ehcache -->
<dependency>
<groupId>org.mybatis.caches</groupId>
<artifactId>mybatis-ehcache</artifactId>
<version>1.1.0</version>
</dependency>
在mapper中指定使用我們的ehcache緩存實現(xiàn)秋秤!
<!--在當(dāng)前Mapper.xml中使用二級緩存-->
<cache type="org.mybatis.caches.ehcache.EhcacheCache"/>
ehcache.xml
<?xml version="1.0" encoding="UTF-8"?>
<ehcache xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="http://ehcache.org/ehcache.xsd"
updateCheck="false">
<!--
diskStore:為緩存路徑耗美,ehcache分為內(nèi)存和磁盤兩級,此屬性定義磁盤的緩存位置航缀。參數(shù)解釋如下:
user.home – 用戶主目錄
user.dir – 用戶當(dāng)前工作目錄
java.io.tmpdir – 默認(rèn)臨時文件路徑
-->
<diskStore path="./tmpdir/Tmp_EhCache"/>
<defaultCache
eternal="false"
maxElementsInMemory="10000"
overflowToDisk="false"
diskPersistent="false"
timeToIdleSeconds="1800"
timeToLiveSeconds="259200"
memoryStoreEvictionPolicy="LRU"/>
<cache
name="cloud_user"
eternal="false"
maxElementsInMemory="5000"
overflowToDisk="false"
diskPersistent="false"
timeToIdleSeconds="1800"
timeToLiveSeconds="1800"
memoryStoreEvictionPolicy="LRU"/>
<!--
defaultCache:默認(rèn)緩存策略商架,當(dāng)ehcache找不到定義的緩存時,則使用這個緩存策略芥玉。只能定義一個蛇摸。
-->
<!--
name:緩存名稱。
maxElementsInMemory:緩存最大數(shù)目
maxElementsOnDisk:硬盤最大緩存?zhèn)€數(shù)灿巧。
eternal:對象是否永久有效赶袄,一但設(shè)置了,timeout將不起作用抠藕。
overflowToDisk:是否保存到磁盤饿肺,當(dāng)系統(tǒng)當(dāng)機時
timeToIdleSeconds:設(shè)置對象在失效前的允許閑置時間(單位:秒)。僅當(dāng)eternal=false對象不是永久有效時使用盾似,可選屬性敬辣,默認(rèn)值是0,也就是可閑置時間無窮大。
timeToLiveSeconds:設(shè)置對象在失效前允許存活時間(單位:秒)溉跃。最大時間介于創(chuàng)建時間和失效時間之間村刨。僅當(dāng)eternal=false對象不是永久有效時使用,默認(rèn)是0.撰茎,也就是對象存活時間無窮大嵌牺。
diskPersistent:是否緩存虛擬機重啟期數(shù)據(jù) Whether the disk store persists between restarts of the Virtual Machine. The default value is false.
diskSpoolBufferSizeMB:這個參數(shù)設(shè)置DiskStore(磁盤緩存)的緩存區(qū)大小。默認(rèn)是30MB龄糊。每個Cache都應(yīng)該有自己的一個緩沖區(qū)逆粹。
diskExpiryThreadIntervalSeconds:磁盤失效線程運行時間間隔,默認(rèn)是120秒炫惩。
memoryStoreEvictionPolicy:當(dāng)達(dá)到maxElementsInMemory限制時僻弹,Ehcache將會根據(jù)指定的策略去清理內(nèi)存。默認(rèn)策略是LRU(最近最少使用)诡必。你可以設(shè)置為FIFO(先進(jìn)先出)或是LFU(較少使用)奢方。
clearOnFlush:內(nèi)存數(shù)量最大時是否清除。
memoryStoreEvictionPolicy:可選策略有:LRU(最近最少使用爸舒,默認(rèn)策略)蟋字、FIFO(先進(jìn)先出)、LFU(最少訪問次數(shù))扭勉。
FIFO鹊奖,first in first out,這個是大家最熟的涂炎,先進(jìn)先出忠聚。
LFU, Less Frequently Used唱捣,就是上面例子中使用的策略两蟀,直白一點就是講一直以來最少被使用的。如上面所講震缭,緩存的元素有一個hit屬性赂毯,hit值最小的將會被清出緩存。
LRU拣宰,Least Recently Used党涕,最近最少使用的,緩存的元素有一個時間戳巡社,當(dāng)緩存容量滿了膛堤,而又需要騰出地方來緩存新的元素的時候,那么現(xiàn)有緩存元素中時間戳離當(dāng)前時間最遠(yuǎn)的元素將被清出緩存晌该。
-->
</ehcache>
Redis數(shù)據(jù)庫來做緩存肥荔! K-V