色综合图-色综合图片-色综合图片二区150p-色综合图区-玖玖国产精品视频-玖玖香蕉视频

您的位置:首頁技術文章
文章詳情頁

Spring Boot 整合 TKMybatis 二次簡化持久層代碼的實現

瀏覽:92日期:2023-07-24 17:24:12

經常用 MyBatis 的的都知道,使用這個框架存在一個非常不友善的問題就是,就是每操作一個單表就需要自己手寫一個 xml 文件,雖然說可以用工具生成 xml 和實體類可以解決這個問題,但是二次開發的時候對某個表字段進行修改的時候,生成 xml 文件就不現實啦。最近發現 tk.mybatis 就非常好的解決了這個問題。tk.mybatis 整合了 MyBatis 框架,在其基礎上提供了很多工具,封裝了常用的增刪改查 SQL 語句,可以讓我們的開發效率更高。在這里和大家分享一下。

引入依賴

在 pom.xml 中引入 mapper-spring-boot-starter 依賴

<!-- druid-spring-boot-starter --><dependency> <groupId>com.alibaba</groupId> <artifactId>druid-spring-boot-starter</artifactId> <version>1.1.10</version></dependency><!-- 數據庫連接依賴 --><dependency> <groupId>mysql</groupId> <artifactId>mysql-connector-java</artifactId> <version>5.1.40</version> <scope>runtime</scope></dependency><!-- mapper-spring-boot-starter --><dependency> <groupId>tk.mybatis</groupId> <artifactId>mapper-spring-boot-starter</artifactId> <version>2.0.2</version></dependency>相關配置

在 application.yml 中添加相關配置

spring: datasource: druid: url: jdbc:mysql://127.0.0.1:3306/test?serverTimezone=GMT%2B8&useUnicode=true&characterEncoding=utf-8&useSSL=false username: root password: 123456 initial-size: 1 min-idle: 1 max-active: 20 test-on-borrow: true driver-class-name: com.mysql.jdbc.Driver # MySQL 8.x: com.mysql.cj.jdbc.Driver mybatis: type-aliases-package: # 實體類的存放路徑,如:com.antoniopeng.hello.spring.boot.entity mapper-locations: classpath:mapper/*.xml # mapper.xml 文件存放路徑,這里存放在配置文件目錄 resources 下 logging: level: com.antoniopeng.hello.springboot.mybatis: debug # 配置監聽日志

在 Application 入口類中使用 tk.mybatis.spring.annotation 包下的 @MapperScan 注解指定 Mapper 接口的掃描路徑

import org.springframework.boot.SpringApplication;import org.springframework.boot.autoconfigure.SpringBootApplication;import tk.mybatis.spring.annotation.MapperScan;@MapperScan(value = 'com.antoniopeng.springboot.mybatis.mapper')@SpringBootApplicationpublic class HelloSpringBootMybatisApplication { public static void main(String[] args) { SpringApplication.run(HelloSpringBootMybatisApplication.class, args); }}整合 PageHelper 分頁插件

引入依賴

在 pom.xml 中引入 pagehelper-spring-boot-starter 依賴

<!-- pagehelper-spring-boot-starter --><dependency> <groupId>com.github.pagehelper</groupId> <artifactId>pagehelper-spring-boot-starter</artifactId> <version>1.2.5</version></dependency>

分頁查詢示例

@RunWith(SpringRunner.class)@SpringBootTest(classes = Application.class)@Transactional@Rollbackpublic class MyBatisTests { @Autowired UserService userService; /** * 測試分頁插件 */ @Test public void testPageHelper() { Example example = new Example(User.class); // 查詢條件 example.createCriteria().andEqualTo('userId', '1') // 分頁參數 PageHelper.startPage(1, 10, 'create_time desc'); // 獲取分頁列表數據 List<User> userList = userService.selectByExample(example); PageInfo pageInfo = new PageInfo(userList); // 獲取列表總數 int userCount = (int) pageInfo.getTotal(); }}

到此這篇關于Spring Boot 整合 TKMybatis 二次簡化持久層代碼的實現的文章就介紹到這了,更多相關Spring Boot 整合 TKMybatis 內容請搜索好吧啦網以前的文章或繼續瀏覽下面的相關文章希望大家以后多多支持好吧啦網!

標簽: Spring
相關文章:
主站蜘蛛池模板: 免费一级毛片在线播放欧美 | 性感美女视频黄.免费网站 性高湖久久久久久久久 | 中文在线最新版天堂 | 黄色一级片网址 | 欧美特黄一级高清免费的香蕉 | 99精彩视频在线观看 | 综合558欧美成人永久网站 | 久久综合久久自在自线精品自 | 亚洲成人在线视频播放 | 国产成人毛片毛片久久网 | 亚洲精品综合久久中文字幕 | 加勒比色综合久久久久久久久 | 中国美女一级看片 | 男人的天堂在线观看免费 | 国产精品永久免费自在线观看 | 三级黄色片在线免费观看 | 特级毛片全部免费播放a一级 | 97国产在线观看 | 亚洲视频 在线观看 | 成人在线免费视频播放 | 成 人 黄 色 激 情视频网站 | 亚洲系列在线 | 欧美亚洲在线观看 | 国产亚洲欧美ai在线看片 | 91精品成人免费国产片 | 亚洲 成人 欧美 自拍 | 亚州男人天堂 | 国产成人毛片亚洲精品不卡 | 国产一区二区三区影院 | 三级手机在线观看 | 九九在线免费视频 | 国产精品免费_区二区三区观看 | 国产精品日韩欧美在线 | 毛片免费观看日本中文 | 成人免费大片黄在线观看com | 欧美成人毛片免费网站 | 欧美一级毛片在线一看 | 日韩精品一区二区三区高清 | 亚洲精品美女在线观看播放 | 国产成人精品永久免费视频 | 成人欧美一区二区三区在线 |