SpringBoot整合Mybatis與MybatisPlus方法詳細講解
一、整合MyBatis操作
官網:MyBatis · GitHub
SpringBoot官方的Starter:spring-boot-starter-*
第三方的starter的格式: *-spring-boot-starter
<dependency> <groupId>org.mybatis.spring.boot</groupId> <artifactId>mybatis-spring-boot-starter</artifactId> <version>2.1.4</version> </dependency>
1、配置模式
全局配置文件
- SqlSessionFactory: 自動配置好瞭
- SqlSession:自動配置瞭 SqlSessionTemplate 組合瞭SqlSession
- @Import(AutoConfiguredMapperScannerRegistrar.class);
- Mapper: 隻要我們寫的操作MyBatis的接口標準瞭 @Mapper 就會被自動掃描進來
- 可以修改配置文件中 mybatis 開始的所有配置;
@EnableConfigurationProperties(MybatisProperties.class) : MyBatis配置項綁定類。 @AutoConfigureAfter({ DataSourceAutoConfiguration.class, MybatisLanguageDriverAutoConfiguration.class }) public class MybatisAutoConfiguration{} @ConfigurationProperties(prefix = "mybatis") public class MybatisProperties
# 配置mybatis規則 mybatis: config-location: classpath:mybatis/mybatis-config.xml #全局配置文件位置 mapper-locations: classpath:mybatis/mapper/*.xml #sql映射文件位置 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="com.atguigu.admin.mapper.AccountMapper"> <!-- public Account getAcct(Long id); --> <select id="getAcct" resultType="com.atguigu.admin.bean.Account"> select * from account_tbl where id=#{id} </select> </mapper>
配置 private Configuration configuration; mybatis.configuration下面的所有,就是相當於改mybatis全局配置文件中的值
# 配置mybatis規則
mybatis:
# config-location: classpath:mybatis/mybatis-config.xml
mapper-locations: classpath:mybatis/mapper/*.xml
configuration:
map-underscore-to-camel-case: true
可以不寫全局;配置文件,所有全局配置文件的配置都放在configuration配置項中即可
- 導入mybatis官方starter
- 編寫mapper接口。標準@Mapper註解
- 編寫sql映射文件並綁定mapper接口
- 在application.yaml中指定Mapper配置文件的位置,以及指定全局配置文件的信息 (建議;配置在mybatis.configuration)
2、註解模式
@Mapper public interface CityMapper { @Select("select * from city where id=#{id}") public City getById(Long id); public void insert(City city); }
3、混合模式
@Mapper public interface CityMapper { @Select("select * from city where id=#{id}") public City getById(Long id); //綁定在mapper映射文件中 public void insert(City city); }
總結:
- 引入mybatis-starter
- 配置application.yaml中,指定mapper-location位置即可
- 編寫Mapper接口並標註@Mapper註解
- 簡單方法直接註解方式
- 復雜方法編寫mapper.xml進行綁定映射
- @MapperScan("com.atguigu.admin.mapper") 簡化,其他的接口就可以不用標註@Mapper註解
二、整合 MyBatis-Plus 完成CRUD
1、什麼是MyBatis-Plus
MyBatis-Plus(簡稱 MP)是一個MyBatis的增強工具,在 MyBatis 的基礎上隻做增強不做改變,為簡化開發、提高效率而生。
mybatis plus 官網
建議安裝 MybatisX 插件
2、整合MyBatis-Plus
<dependency> <groupId>com.baomidou</groupId> <artifactId>mybatis-plus-boot-starter</artifactId> <version>3.4.1</version> </dependency>
自動配置
- MybatisPlusAutoConfiguration 配置類,MybatisPlusProperties 配置項綁定。mybatis-plus:xxx 就是對mybatis-plus的定制
- SqlSessionFactory 自動配置好。底層是容器中默認的數據源
- mapperLocations 自動配置好的。有默認值。classpath*:/mapper/**/*.xml;任意包的類路徑下的所有mapper文件夾下任意路徑下的所有xml都是sql映射文件。 建議以後sql映射文件,放在 mapper下
- 容器中也自動配置好瞭 SqlSessionTemplate
- @Mapper 標註的接口也會被自動掃描;建議直接 @MapperScan("com.atguigu.admin.mapper") 批量掃描就行
優點:
- 隻需要我們的Mapper繼承 BaseMapper 就可以擁有crud能力
3、CRUD功能
@GetMapping("/user/delete/{id}") public String deleteUser(@PathVariable("id") Long id, @RequestParam(value = "pn",defaultValue = "1")Integer pn, RedirectAttributes ra){ userService.removeById(id); ra.addAttribute("pn",pn); return "redirect:/dynamic_table"; } @GetMapping("/dynamic_table") public String dynamic_table(@RequestParam(value="pn",defaultValue = "1") Integer pn,Model model){ //表格內容的遍歷 // response.sendError // List<User> users = Arrays.asList(new User("zhangsan", "123456"), // new User("lisi", "123444"), // new User("haha", "aaaaa"), // new User("hehe ", "aaddd")); // model.addAttribute("users",users); // // if(users.size()>3){ // throw new UserTooManyException(); // } //從數據庫中查出user表中的用戶進行展示 //構造分頁參數 Page<User> page = new Page<>(pn, 2); //調用page進行分頁 Page<User> userPage = userService.page(page, null); // userPage.getRecords() // userPage.getCurrent() // userPage.getPages() model.addAttribute("users",userPage); return "table/dynamic_table"; }
Service
@Service public class UserServiceImpl extends ServiceImpl<UserMapper,User> implements UserService { } public interface UserService extends IService<User> { }
到此這篇關於SpringBoot整合Mybatis與MybatisPlus方法詳細講解的文章就介紹到這瞭,更多相關SpringBoot整合Mybatis與MybatisPlus內容請搜索WalkonNet以前的文章或繼續瀏覽下面的相關文章希望大傢以後多多支持WalkonNet!
推薦閱讀:
- spring boot寫java web和接口
- SpringBoot整合MyBatis超詳細教程
- mybatis-plus樂觀鎖實現方式詳解
- springboot整合mybatis-plus實現多表分頁查詢的示例代碼
- 解決SpringBoot整合MybatisPlus分模塊管理遇到的bug