摘要:讀取控制臺內容請輸入請輸入正確的代碼生成器全局配置實體屬性注解數據源配置包配置這里有個模塊名的配置,可以注釋掉不用。
最近在研究mybatis,然后就去找簡化mybatis開發的工具,發現就有通用Mapper和mybatis-plus兩個比較好的可是使用,可是經過對比發現還是mybatis-plus比較好,個人覺得,勿噴。。。
集成還是非常簡單的,然后就在研究怎么分頁,開始研究通用mapper時發現有個pagehelper的分頁工具可以和它搭配。然后反過來看是不是也可以和mybatis-plus搭配使用呢?發現mybatis-plus之前是可以支持的,升級成3.X之后就不再支持了。然后就研究mybatis-plus自帶的分頁工具吧!今天就簡單的寫個例子吧!
首先我們肯定要先建一個springboot的項目,這里我就不再多說怎么創建了昂,不會的話請參考
Spring Boot 的簡單教程(一) Spring Boot 項目的創建
創建好項目之后我們就需要配置maven依賴了,這里附上我的pom.xml文件了。
org.springframework.boot spring-boot-starter-web org.mybatis.spring.boot mybatis-spring-boot-starter 2.0.1 mysql mysql-connector-java runtime org.projectlombok lombok true com.baomidou mybatis-plus-boot-starter 3.1.1 com.baomidou mybatis-plus-generator 3.1.1 org.freemarker freemarker 2.3.28 org.springframework.boot spring-boot-starter-test test
配置好pom.xml文件之后,理所當然的就需要配置application.yml了。
#端口號 server: port: 8888 #數據庫的配置信息 spring: datasource: url: jdbc:mysql://localhost:3306/blog #自己的數據庫名稱 username: root password: 123456 mybatis: #開啟駝峰命名法 configuration: map-underscore-to-camel-case: true mybatis-plus: # xml地址 mapper-locations: classpath:mapper/*Mapper.xml # 實體掃描,多個package用逗號或者分號分隔 type-aliases-package: com.zhouzhaodong.pagination.entity #自己的實體類地址 configuration: # 這個配置會將執行的sql打印出來,在開發或測試的時候可以用 log-impl: org.apache.ibatis.logging.stdout.StdOutImpl
接下來就需要配置mybatis-plus的代碼生成器了。
/** ** 讀取控制臺內容 *
*/ public static String scanner(String tip) { Scanner scanner = new Scanner(System.in); StringBuilder help = new StringBuilder(); help.append("請輸入" + tip + ":"); System.out.println(help.toString()); if (scanner.hasNext()) { String ipt = scanner.next(); if (StringUtils.isNotEmpty(ipt)) { return ipt; } } throw new MybatisPlusException("請輸入正確的" + tip + "!"); } public static void main(String[] args) { // 代碼生成器 AutoGenerator mpg = new AutoGenerator(); // 全局配置 GlobalConfig gc = new GlobalConfig(); String projectPath = System.getProperty("user.dir"); gc.setOutputDir(projectPath + "/src/main/java"); gc.setAuthor("jobob"); gc.setOpen(false); // gc.setSwagger2(true); 實體屬性 Swagger2 注解 mpg.setGlobalConfig(gc); // 數據源配置 DataSourceConfig dsc = new DataSourceConfig(); dsc.setUrl("jdbc:mysql://localhost:3306/blog?useUnicode=true&useSSL=false&characterEncoding=utf8"); // dsc.setSchemaName("public"); dsc.setDriverName("com.mysql.cj.jdbc.Driver"); dsc.setUsername("root"); dsc.setPassword("123456"); mpg.setDataSource(dsc); // 包配置 PackageConfig pc = new PackageConfig(); //這里有個模塊名的配置,可以注釋掉不用。 // pc.setModuleName(scanner("模塊名")); // pc.setParent("com.zhouxiaoxi.www"); pc.setParent(scanner("模塊地址")); mpg.setPackageInfo(pc); // 自定義配置 InjectionConfig cfg = new InjectionConfig() { @Override public void initMap() { // to do nothing } }; // 如果模板引擎是 freemarker String templatePath = "/templates/mapper.xml.ftl"; // 如果模板引擎是 velocity // String templatePath = "/templates/mapper.xml.vm"; // 自定義輸出配置 ListfocList = new ArrayList<>(); // 自定義配置會被優先輸出 focList.add(new FileOutConfig(templatePath) { @Override public String outputFile(TableInfo tableInfo) { // 自定義輸出文件名 , 如果你 Entity 設置了前后綴、此處注意 xml 的名稱會跟著發生變化!! return projectPath + "/src/main/resources/mapper/" // + + pc.getModuleName() + 如果放開上面的模塊名,這里就有一個模塊名了 + "/" + tableInfo.getEntityName() + "Mapper" + StringPool.DOT_XML; } }); /* cfg.setFileCreate(new IFileCreate() { @Override public boolean isCreate(ConfigBuilder configBuilder, FileType fileType, String filePath) { // 判斷自定義文件夾是否需要創建 checkDir("調用默認方法創建的目錄"); return false; } }); */ cfg.setFileOutConfigList(focList); mpg.setCfg(cfg); // 配置模板 TemplateConfig templateConfig = new TemplateConfig(); // 配置自定義輸出模板 //指定自定義模板路徑,注意不要帶上.ftl/.vm, 會根據使用的模板引擎自動識別 // templateConfig.setEntity("templates/entity2.java"); // templateConfig.setService(); // templateConfig.setController(); templateConfig.setXml(null); mpg.setTemplate(templateConfig); // 策略配置 StrategyConfig strategy = new StrategyConfig(); //數據庫表映射到實體的明明策略 strategy.setNaming(NamingStrategy.underline_to_camel); //數據庫表字段映射到實體的命名策略, 未指定按照 naming 執行 strategy.setColumnNaming(NamingStrategy.underline_to_camel); //自定義繼承的Entity類全稱,帶包名 // strategy.setSuperEntityClass("***"); strategy.setEntityLombokModel(true); strategy.setRestControllerStyle(true); //自定義繼承的Controller類全稱,帶包名 // strategy.setSuperControllerClass("***"); strategy.setInclude(scanner("表名,多個英文逗號分割").split(",")); //自定義基礎的Entity類,公共字段(可添加更多) // strategy.setSuperEntityColumns("id"); //駝峰轉連字符 strategy.setControllerMappingHyphenStyle(true); //表前綴 // strategy.setTablePrefix(pc.getModuleName() + "_"); mpg.setStrategy(strategy); mpg.setTemplateEngine(new FreemarkerTemplateEngine()); mpg.execute(); }
運行之后就會出現所有需要的文件了。
需要配置一下分頁插件,新建一個文件MybatisPlusConfig。
//Spring boot方式 @EnableTransactionManagement @Configuration public class MybatisPlusConfig { /** * 分頁插件 */ @Bean public PaginationInterceptor paginationInterceptor() { return new PaginationInterceptor(); } }
這樣就只需要在controller里面寫方法就可以了。
@RestController @RequestMapping("/student") public class StudentController { @Autowired IStudentService studentService; @RequestMapping(value = "/findAll",method = RequestMethod.POST) public Object findAll(HttpServletRequest request){ //獲取前臺發送過來的數據 Integer pageNo = Integer.valueOf(request.getParameter("pageNo")); Integer pageSize = Integer.valueOf(request.getParameter("pageSize")); IPagepage = new Page<>(pageNo, pageSize); QueryWrapper wrapper = new QueryWrapper<>(); Student student = new Student(); student.setId(1); wrapper.setEntity(student); return studentService.page(page,wrapper); } }
實現的效果為:
具體代碼在github上面已經上傳了,可以去下載使用哦!
https://github.com/zhouzhaodo...
文章版權歸作者所有,未經允許請勿轉載,若此文章存在違規行為,您可以聯系管理員刪除。
轉載請注明本文地址:http://m.specialneedsforspecialkids.com/yun/74808.html
摘要:是最流行的關系型數據庫管理系統之一,在應用方面,是最好的,關系數據庫管理系統應用軟件。是一種關系數據庫管理系統,關系數據庫將數據保存在不同的表中,而不是將所有數據放在一個大倉庫內,這樣就增加了速度并提高了靈活性。 本章主要是對MyBatis-Plus的初步介紹,包括一些背景知識、環境搭建、初步使用等知識和例子。對于背景知識,主要包含對MyBatis-Plus的特性介紹、為什么使用MyB...
摘要:的作用可以看到,它給我們提供了一些核心的功能代碼生成器和現成的接口以及可以結合的條件構造器使我們的代碼變得足夠優雅,分頁的使用也是相當的方便,以及提供了不同的主鍵生成策略。 簡介 Mybatis-Plus是在Mybatis的基礎上,國人開發的一款持久層框架。 showImg(https://segmentfault.com/img/bVbvFk4?w=2022&h=862); 并且榮獲...
摘要:申請連接時執行檢測連接是否有效,做了這個配置會降低性能。作者在版本中使用,通過監控界面發現有緩存命中率記錄,該應該是支持。允許和不允許單條語句返回多個數據集取決于驅動需求使用列標簽代替列名稱。需要驅動器支持。將自動映射所有復雜的結果。 項目github地址:https://github.com/5-Ason/aso... 具體可看 ./db/db-mysql 模塊 本文主要實現的是對...
閱讀 3028·2021-11-24 10:21
閱讀 1598·2021-10-11 10:57
閱讀 2813·2021-09-22 15:24
閱讀 2674·2021-09-22 14:58
閱讀 2336·2019-08-30 13:16
閱讀 3487·2019-08-29 13:05
閱讀 3418·2019-08-29 12:14
閱讀 3456·2019-08-27 10:55