摘要:最近在研究,順便就會看看數據庫連接這一塊的知識,所以當我發現有通用和這兩款網絡上比較火的簡化開發的優秀軟件之后。先創建一個的項目,可以參考我之前的文章的簡單教程一項目的創建。打開文件,將最新的相關的包都引用進來。
最近在研究springboot,順便就會看看數據庫連接這一塊的知識 ,所以當我發現有通用Mapper和MybatisPlus這兩款網絡上比較火的簡化mybatis開發的優秀軟件之后。就都想試一下,看看哪一款比較適合自己。
先創建一個springboot的項目,可以參考我之前的文章Spring Boot 的簡單教程(一) Spring Boot 項目的創建。
創建好springboot之后就需要整合mybatis和mybatis-plus了。
打開pom.xml文件,將最新的mybatis相關的包都引用進來。
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
需要對application.yml進行相關的配置。
#端口號 server: port: 8088 #數據庫的配置信息 spring: datasource: url: jdbc:mysql://localhost:3306/*** #自己的數據庫名稱 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: *** #自己的實體類地址 configuration: # 這個配置會將執行的sql打印出來,在開發或測試的時候可以用 log-impl: org.apache.ibatis.logging.stdout.StdOutImpl
自動生成模塊的方法,在相應的位置上添加上自己的一些包名就可以運行生成相應的Entity、Mapper、Mapper XML、Service、Controller 等各個模塊的代碼。
public class CodeGenerator { /** ** 讀取控制臺內容 *
*/ 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/***?useUnicode=true&useSSL=false&characterEncoding=utf8"); // dsc.setSchemaName("public"); dsc.setDriverName("com.mysql.cj.jdbc.Driver"); dsc.setUsername("root"); dsc.setPassword("***"); mpg.setDataSource(dsc); // 包配置 PackageConfig pc = new PackageConfig(); //這里有個模塊名的配置,可以注釋掉不用。 // pc.setModuleName(scanner("模塊名")); pc.setParent("com.zhouxiaoxi.www"); 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(); } }
在生成的controller里面添加對應的方法啟動就可以正常進行訪問了。
當然還需要在 Spring Boot 啟動類中添加 @MapperScan 注解,掃描 Mapper 文件夾:
@SpringBootApplication @MapperScan("***.*.mapper") //對應你的mapper存放的地址 public class Application { public static void main(String[] args) { SpringApplication.run(QuickStartApplication.class, args); } }
文章版權歸作者所有,未經允許請勿轉載,若此文章存在違規行為,您可以聯系管理員刪除。
轉載請注明本文地址:http://m.specialneedsforspecialkids.com/yun/77666.html
摘要:申請連接時執行檢測連接是否有效,做了這個配置會降低性能。作者在版本中使用,通過監控界面發現有緩存命中率記錄,該應該是支持。允許和不允許單條語句返回多個數據集取決于驅動需求使用列標簽代替列名稱。需要驅動器支持。將自動映射所有復雜的結果。 項目github地址:https://github.com/5-Ason/aso... 具體可看 ./db/db-mysql 模塊 本文主要實現的是對...
閱讀 4167·2022-09-16 13:49
閱讀 1407·2021-11-22 15:12
閱讀 1529·2021-09-09 09:33
閱讀 1047·2019-08-30 13:15
閱讀 1732·2019-08-29 15:30
閱讀 665·2019-08-27 10:52
閱讀 2649·2019-08-26 17:41
閱讀 1904·2019-08-26 12:11