版權(quán)說明:本文檔由用戶提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權(quán),請進行舉報或認領(lǐng)
文檔簡介
JavaWeb開發(fā)從入門到實踐JavaWebDevelopmentFromIntroductiontoPracticeMyBatis框架Chap13提綱MyBatis框架本章介紹MyBatis的基本操作與XML映射配置文件的使用,講解了分頁查詢實現(xiàn)和跨域訪問數(shù)據(jù)的處理方法,幫助開發(fā)者高效地進行數(shù)據(jù)訪問與管理。13.1MyBatis基本操作13.2XML映射配置文件13.3分頁查詢13.4跨域訪問數(shù)據(jù)13.5本章小結(jié)13.1MyBatis基本操作13.1.1MyBatis概念13.1.2MyBatis基礎(chǔ)操作13.1.1MyBatis概念MyBatis是支持定制化SQL、存儲過程以及高級映射的優(yōu)秀的持久層框架,它內(nèi)部封裝了JDBC,使開發(fā)者只需要關(guān)注SQL本身,而不需要花費精力去處理諸如注冊驅(qū)動、創(chuàng)建Connection對象等JDBC的繁瑣過程。MyBatis的主要特點如下。(1)SQL映射:MyBatis直接使用SQL,可以將接口與SQL語句綁定,運行時動態(tài)地生成SQL語句。(2)簡化JDBC使用:減少編寫重復的JDBC代碼,使代碼更加簡潔。(3)無侵入性:MyBatis完全依賴于接口,不會影響原始的代碼結(jié)構(gòu)。(4)靈活性:MyBatis的SQL直接寫在XML或注解中,可以隨時修改SQL語句,不影響原始Java代碼。(5)動態(tài)SQL:支持動態(tài)SQL,可以根據(jù)不同的條件生成不同的SQL語句。(6)與Spring集成:MyBatis可以與Spring框架無縫集成,簡化了配置過程。13.1.2MyBatis基礎(chǔ)操作案例:MyBatis基礎(chǔ)操作1、創(chuàng)建一個SpringBoot工程,選擇引入對應(yīng)的起步依賴(mybatis、mysql驅(qū)動、lombok和web)。2、perties中引入數(shù)據(jù)庫連接信息,啟動MyBatis的日志功能,并指定輸出到控制臺。spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driverspring.datasource.url=jdbc:mysql://localhost:3306/mybatisspring.datasource.username=root
spring.datasource.password=123456
mybatis.configuration.log-impl=org.apache.ibatis.logging.stdout.StdOutImpl3、創(chuàng)建數(shù)據(jù)庫表emp和對應(yīng)的實體類Emp13.1.2MyBatis基礎(chǔ)操作createtableemp(
idintunsignedprimarykeyauto_incrementcomment'ID',
usernamevarchar(20)notnulluniquecomment'用戶名',
passwordvarchar(32)default'123456'comment'密碼',
namevarchar(10)notnullcomment'姓名',
gendertinyintunsignednotnullcomment'性別,說明:1男,0女',
imagevarchar(300)comment'圖像',
jobtinyintunsignedcomment'職位:1專任教師,2輔導員,3其它,
entrydatedatecomment'入職時間',
dept_idintunsignedcomment'部門ID',
create_timedatetimenotnullcomment'創(chuàng)建時間',
update_timedatetimenotnullcomment'修改時間')comment'員工表';13.1.2MyBatis基礎(chǔ)操作@Data@AllArgsConstructor@NoArgsConstructorpublicclassEmp{ privateIntegerid; privateStringusername; privateStringpassword; privateStringname; privateShortgender; privateStringimage; privateshortjob; privateLocalDateentrydate; privateIntegerdeptId; privateLocalDateTimecreateTime; privateLocalDateTimeupdateTime;}13.1.2MyBatis基礎(chǔ)操作4、準備Mapper接口EmpMapperMyBatis支持參數(shù)占位符,MyBatis對于字符參數(shù)和非字符參數(shù)提供了兩種不同的參數(shù)占位符,字符類型的參數(shù)使用${},而非字符類型的參數(shù)使用#{}。(1)#{}
執(zhí)行SQL時,會將#{}替換為?,生成預編譯SQL,會自動設(shè)置參數(shù)值,適用于參數(shù)傳遞。(2)${}
拼接SQL。namelikeconcat('%',#{name},'%')13.1.2MyBatis基礎(chǔ)操作增加、刪除操作@Mapper
publicinterfaceEmpMapper{
@Options(keyProperty="id",useGeneratedKeys=true)
@Insert("INSERTINTOemp(username,password,name,gender,image,job,entrydate,dept_id,create_time,update_time)VALUES(#{username},#{password},#{name},#{gender},#{image},#{job},#{entrydate},#{deptId},#{createTime},#{updateTime})")
publicvoidinsert(Empemp);
@Delete("deletefromempwhereid=#{id}")
publicvoiddelete(Integerid);
13.1.2MyBatis基礎(chǔ)操作修改、查詢操作@Update("updateempsetusername=#{username},password=#{password},name=#{name},gender=#{gender},image=#{image},job=#{job},entrydate=#{entrydate},dept_id=#{deptId},create_time=#{createTime},update_time=#{updateTime}"+"whereid=#{id}")
publicvoidupdate(Empemp);
@Select("select*fromempwhereid=#{id}")
publicEmpgetById(Integerid);
@Select("select*fromempwherenamelikeconcat('%',#{name},'%')andgender=#{gender}andentrydatebetween#{begin}and#{end}")
publicList<Emp>list(Stringname,Shortgender,LocalDatebegin,LocalDateend);
}13.1.2MyBatis基礎(chǔ)操作5、數(shù)據(jù)封裝實體類屬性名和數(shù)據(jù)庫字段名一致,MyBatis會自動封裝,如果實體類屬性名和數(shù)據(jù)庫字段名不一致,不能自動封裝,這種情況進行封裝有以下三種方式。(1)起別名。在SQL語句中,對不一樣的列名起別名,保持別名和實體類屬性名一致。@Select("selectid,username,password,name,gender,image,job,entrydate,dept_iddeptId,create_timecreateTime,update_timeupdateTimefromempwhereid=#{id}")
publicEmpgetById(Integerid);(2)手動設(shè)置結(jié)果映射。通過@Results及@Result手動設(shè)置結(jié)果映射。@Select("select*fromempwhereid=#{id}")@Results({@Result(column="dept_id",property="deptId"),@Result(column="create_time",property="createTime"),@Result(column="update_time",property="updateTime")})publicEmpgetById(Integerid);13.1.2MyBatis基礎(chǔ)操作(3)開啟駝峰命名。如果字段名與屬性名符合駝峰命名規(guī)則,MyBatis會自動通過駝峰命名規(guī)則映射,在perties中進行設(shè)置mybatis.configuration.map-underscore-to-camel-case=true13.2XML映射配置文件13.2.1XML映射文件13.2.2MyBatis動態(tài)SQL13.2.1XML映射文件使用XML映射文件需要遵守以下規(guī)范。(1)XML映射文件的名稱與Mapper接口名稱一致,并且將XML映射文件和Mapper接口放置在相同包下。(2)XML映射文件的namespace屬性與Mapper接口全限定名一致。(3)XML映射文件中SQL語句的id與Mapper接口中的方法名一致,并保持返回類型一致。13.1.2MyBatis基礎(chǔ)操作案例:使用XML映射配置文件操作數(shù)據(jù)庫圖
13-1
工程目錄結(jié)構(gòu)13.1.2MyBatis基礎(chǔ)操作(1)創(chuàng)建文件EmpMapper.java@Mapper
publicinterfaceEmpMapper{
publicvoidinsert(Empemp);
publicvoiddelete(Integerid);
publicvoidupdate(Empemp);
publicEmpgetById(Integerid);
publicList<Emp>list(Stringname,Shortgender,LocalDatebegin,LocalDateend);
}(2)創(chuàng)建EmpMapper.xml文件<mappernamespace="com.swxy.mapper.EmpMapper">
<insertid="insert"keyProperty="id"useGeneratedKeys="true">
INSERTINTOemp(username,password,name,gender,image,job,entrydate,dept_id,
create_time,update_time)VALUES(#{username},#{password},#{name},#{gender}, #{image},#{job},#{entrydate},#{deptId},#{createTime},#{updateTime})
</insert>13.1.2MyBatis基礎(chǔ)操作
<deleteid="delete">deletefromempwhereid=#{id}</delete>
<updateid="update">updateempsetusername=#{username},password=#{password},name=#{name},
gender=#{gender},image=#{image},job=#{job},entrydate=#{entrydate},dept_id=#{deptId},create_time=#{createTime},update_time=#{updateTime}
whereid=#{id}
</update>
<selectid="getById"resultType="com.swxy.pojo.Emp">select*fromempwhereid=#{id}
</select>
<selectid="list"resultType="com.swxy.pojo.Emp">
select*fromempwherenamelikeconcat('%',#{name},'%')andgender=#{gender}andentrydatebetween#{begin}and#{end}
</select>
</mapper>13.1.2MyBatis基礎(chǔ)操作(3)編寫測試類@Slf4j@SpringBootTestclassSpringbootMybatisCrudApplicationTests{ @Autowired privateEmpMapperempMapper; @Test voidtestInsert(){ Empemp=newEmp(0,"oky","123456","蔣亞平",(short)1,"1.png",(short)4,LocalDate.of(2021,3,5),2,LocalDateTime.now(),LocalDateTime.now()); ("增加員工"); empMapper.insert(emp); } @Test voidtestDelet(){ ("刪除編號為{}的員工",18); empMapper.delete(18); }
13.1.2MyBatis基礎(chǔ)操作 @Test voidtestUpdate(){ Empemp=newEmp(19,"chalyabc","123456789","Charles",(short)1,"1.png",(short)4,LocalDate.of(2021,3,5),2,LocalDateTime.now(),LocalDateTime.now()); ("修改員工"); empMapper.update(emp); } @Test voidtestGetById(){ Empemp=empMapper.getById(1); System.out.println(emp); } @Test voidtestList(){ List<Emp>empList=empMapper.list("蔣",(short)1,LocalDate.of(1990,5,6),LocalDate.of(2024,5,9)); System.out.println(empList); }}13.2.2MyBatis動態(tài)SQL隨著用戶的輸入或外部條件的變化而變化的SQL語句,我們稱為動態(tài)SQL。常用的動態(tài)SQL:if、where和set元素
<updateid="update">
updateemp
<set>
<iftest="username!=null">username=#{username},</if>
<iftest="password!=null">password=#{password},</if></set><where> <iftest="name!=null">
name=#{name}
</if><where></update>13.2.2MyBatis動態(tài)SQLforeachforeach標簽可以用來遍歷數(shù)組、列表和Map等集合參數(shù),實現(xiàn)批量操作或一些簡單SQL操作,foreach元素屬性及作用如下。Collection:集合名稱item:集合遍歷出來的元素或者項separator:每一次遍歷使用的分隔符open:遍歷開始前拼接的片段close:遍歷結(jié)束后拼接的片段案例:根據(jù)員工編號批量刪除員工數(shù)據(jù)<deleteid="deleteByIds">
deletefromempwhereidin
<foreachcollection="ids"item="id"separator=","open="("close=")">
#{id}
</foreach>
</delete>13.2.2MyBatis動態(tài)SQLsql和include元素sql元素用來定義可重用的SQL片段。include元素通過屬性refid指定包含的sql片段。案例:根據(jù)員工編號查詢員工信息<sqlid="commonSelect"> selectid,username,password,name,gender,image,job,entrydate,dept_id,create_time,update_timefromemp</sql><selectid="getById"resultType="com.swxy.pojo.Emp"><includerefid="commonSelect"/>whereid=#{id}</select>13.3分頁查詢13.3.1傳統(tǒng)方法13.3.2分頁插件PageHelper13.3.1傳統(tǒng)方法客戶端通過傳遞頁碼、每頁顯示記錄條數(shù),數(shù)據(jù)庫通過分頁函數(shù)進行分頁,例如,MySQL使用limit函數(shù),數(shù)據(jù)層需要編寫獲取總記錄數(shù)和分頁查詢二個方法。(1)創(chuàng)建實體類PageBean@Data
@NoArgsConstructor
@AllArgsConstructor
publicclassPageBean{
privateLongtotal;
privateListrows;
}(2)編寫數(shù)據(jù)層EmpMapper文件@MapperpublicinterfaceEmpMapper{ @Select("selectcount(*)fromemp") publicLongcount(); @Select("select*fromemplimit#{start},#{pageSize}") publicList<Emp>page(Integerstart,IntegerpageSize);}13.3.1傳統(tǒng)方法(3)編寫業(yè)務(wù)層實現(xiàn)類@ServicepublicclassEmpServiceImplimplementsEmpService{ @Autowired privateEmpMapperempMapper; @Override publicPageBeanpage(Integerpage,IntegerpageSize){ Longcount=empMapper.count(); Integerstart=(1)*pageSize; List<Emp>empList=empMapper.page(start,pageSize); PageBeanpageBean=newPageBean(count,empList); returnpageBean; }}13.3.1傳統(tǒng)方法(4)編寫控制層@RestControllerpublicclassEmpController{ @Autowired privateEmpServiceempService; @GetMapping("/emps") publicResultpage(@RequestParam(defaultValue="1")Integerpage,@RequestParam(defaultValue="2")IntegerpageSize){ PageBeanpageBean=empService.page(page,pageSize); returnResult.success(pageBean); }}13.3.1傳統(tǒng)方法(5)使用Postman進行測試圖
13-2
分頁測試13.3.2分頁插件PageHelper使用分頁插件PageHelper進行分頁,需要添加分頁插件的依賴,數(shù)據(jù)層只需查詢所有記錄,PageHelper插件會根據(jù)所有記錄進行分頁,使用起來比傳統(tǒng)方法更簡單。使用分頁插件PageHelper實現(xiàn)分頁的具體步驟:(1)添加PageHelper分頁插件的依賴<dependency>
<groupId>com.github.pagehelper</groupId>
<artifactId>pagehelper-spring-boot-starter</artifactId>
<version>1.4.2</version>
</dependency>(2)編寫數(shù)據(jù)層@Mapper
publicinterfaceEmpMapper{
@Select("select*fromemp")
publicList<Emp>list();
//員工信息查詢}13.3.2分頁插件PageHelper(3)編寫業(yè)務(wù)層實現(xiàn)類@ServicepublicclassEmpServiceImplimplementsEmpService{ @Autowired privateEmpMapperempMapper; @Override
溫馨提示
- 1. 本站所有資源如無特殊說明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請下載最新的WinRAR軟件解壓。
- 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請聯(lián)系上傳者。文件的所有權(quán)益歸上傳用戶所有。
- 3. 本站RAR壓縮包中若帶圖紙,網(wǎng)頁內(nèi)容里面會有圖紙預覽,若沒有圖紙預覽就沒有圖紙。
- 4. 未經(jīng)權(quán)益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
- 5. 人人文庫網(wǎng)僅提供信息存儲空間,僅對用戶上傳內(nèi)容的表現(xiàn)方式做保護處理,對用戶上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對任何下載內(nèi)容負責。
- 6. 下載文件中如有侵權(quán)或不適當內(nèi)容,請與我們聯(lián)系,我們立即糾正。
- 7. 本站不保證下載資源的準確性、安全性和完整性, 同時也不承擔用戶因使用這些下載資源對自己和他人造成任何形式的傷害或損失。
最新文檔
- 2024年版離婚雙方撫養(yǎng)子女權(quán)益保障合同版B版
- 2024年種子包裝與運輸服務(wù)合同模板3篇
- 2024年石油產(chǎn)品國際貿(mào)易結(jié)算與支付合同范本3篇
- 2024-2025學年桂林市永福縣數(shù)學三上期末學業(yè)水平測試試題含解析
- 2025中國鐵塔集團上海分公司招聘8人高頻重點提升(共500題)附帶答案詳解
- 2025中國葛洲壩集團股份限公司紀檢崗位招聘2人高頻重點提升(共500題)附帶答案詳解
- 2025中國移動廣西公司招聘高頻重點提升(共500題)附帶答案詳解
- 2025中國電信集團限公司政企信息服務(wù)事業(yè)群招聘高頻重點提升(共500題)附帶答案詳解
- 2025中國電信山東聊城分公司校園招聘高頻重點提升(共500題)附帶答案詳解
- 2025中國農(nóng)業(yè)科學院植物保護研究所農(nóng)藥應(yīng)用風險控制團隊科研助理公開招聘3人高頻重點提升(共500題)附帶答案詳解
- 【發(fā)動機曲軸數(shù)控加工工藝過程卡片的設(shè)計7800字(論文)】
- 店鋪(初級)營銷師認證考試題庫附有答案
- 飛機儀電與飛控系統(tǒng)原理智慧樹知到期末考試答案章節(jié)答案2024年中國人民解放軍海軍航空大學
- JG197-2006 預應(yīng)力混凝土空心方樁
- 口腔潰瘍的表觀遺傳調(diào)控與治療靶點
- 醫(yī)院護理培訓課件:《安全注射》
- 礦山開采合股協(xié)議書
- 11304+《管理案例分析》紙考2023.12
- 《勇敢面對挫折和困難》參考課件
- 現(xiàn)代通信技術(shù)導論智慧樹知到期末考試答案章節(jié)答案2024年北京科技大學
- 健康促進生活方式量表評分標準
評論
0/150
提交評論