您好,登錄后才能下訂單哦!
今天就跟大家聊聊有關(guān)如何把Mybatis遷移到Mybatis-Plus中,可能很多人都不太了解,為了讓大家更加了解,小編給大家總結(jié)了以下內(nèi)容,希望大家根據(jù)這篇文章可以有所收獲。
由于原來項(xiàng)目中已有很多功能和包,想遷移到Mybatis-Plus,舊的還是繼續(xù)用 Mybatis和PageHelper,新的準(zhǔn)備全部用Mybatis-Plus。遷移遇到了各種錯(cuò)誤,記錄一下,特別是這個(gè)錯(cuò)誤:mybatis-plus org.apache.ibatis.binding.BindingException: Invalid bound statement (not found):,花了差不多一天時(shí)間,都差點(diǎn)準(zhǔn)備撤子模塊了,將舊的一個(gè)模塊,新的一個(gè)模塊。
一、Mybatis-Plus依賴
后面還準(zhǔn)備新建對(duì)象,把代碼生成器也加進(jìn)來了。
<!-- SpringBoot集成mybatis plus框架 --> <dependency> <groupId>com.baomidou</groupId> <artifactId>mybatis-plus-boot-starter</artifactId> <version>${mybatis.plus.version}</version> </dependency> <!-- mybatis-plus-generator 代碼生成器 --> <dependency> <groupId>com.baomidou</groupId> <artifactId>mybatis-plus-generator</artifactId> <version>${mybatis.plus.generator.version}</version> </dependency> <!-- mybatis plus生成代碼的模板引擎 --> <dependency> <groupId>org.apache.velocity</groupId> <artifactId>velocity-engine-core</artifactId> <version>${velocity.engine.version}</version> </dependency>
在這兒遇到第一個(gè)問題,原模板有Velocity 1.7版本,在代碼生成器中有需要用velocity-engine-core,這兩個(gè)不能同時(shí)引用,會(huì)有沖突。將Velocity引用去掉,在服務(wù)器監(jiān)控程序有一個(gè)下面語(yǔ)句不能用,注釋掉,好像沒有什么影響。
p.setProperty(Velocity.OUTPUT_ENCODING, Constants.UTF8);
二、創(chuàng)建代碼生成器
參考官方文檔,找個(gè)單獨(dú)的包,創(chuàng)建代碼生成器。在原來的模塊上增加后,各種不能使用,沒有辦法,新建了一個(gè)全新的文件,生產(chǎn)對(duì)象代碼,創(chuàng)建測(cè)試對(duì)象,可以運(yùn)行,到了原來的程序上好多問題,后檢查大部分是引用包之間版本沖突造成,主要是:
1、不要保留Mybatis的依賴,用最新的Mybatis-plus-boot-start就行
2、Mybatis-plus版本也會(huì)不影響,我用的是3.3.1
3、包的位置影響很大,接口文件一定要在@MapperScan(“com.xiyou.project.**.mapper”)包含的目錄下,
4、配置文件要正確,生成代碼要在配置文件包含下:
# MyBatis-plus配置 mybatis-plus: # 搜索指定包別名 type-aliases-package: com.xiyou.project.**.domain # 配置mapper的掃描,找到所有的mapper.xml映射文件 mapper-locations: classpath*:mybatis/**/*Mapper.xml
// 執(zhí)行 main 方法控制臺(tái)輸入模塊表名回車自動(dòng)生成對(duì)應(yīng)項(xiàng)目目錄中 public class MpGenerator { /** * <p> * 讀取控制臺(tái)內(nèi)容 * </p> */ public static String scanner(String tip) { Scanner scanner = new Scanner(System.in); StringBuilder help = new StringBuilder(); help.append("請(qǐng)輸入" + tip + ":"); System.out.println(help.toString()); if (scanner.hasNext()) { String ipt = scanner.next(); if (StringUtils.isNotEmpty(ipt)) { return ipt; } } throw new MybatisPlusException("請(qǐng)輸入正確的" + 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("wu jize"); gc.setOpen(false); //實(shí)體屬性 Swagger2 注解 gc.setSwagger2(true); mpg.setGlobalConfig(gc); // 數(shù)據(jù)源配置 DataSourceConfig dsc = new DataSourceConfig(); dsc.setUrl("jdbc:mysql://localhost:33306/xiyou?useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=GMT%2B8"); // dsc.setSchemaName("public"); dsc.setDriverName("com.mysql.cj.jdbc.Driver"); dsc.setUsername("root"); dsc.setPassword("123123"); mpg.setDataSource(dsc); // 包配置 PackageConfig pc = new PackageConfig(); pc.setModuleName(scanner("模塊名")); **//生成對(duì)模塊數(shù)據(jù)對(duì)像的代碼保存地** pc.setParent("com.xiyou.project"); **//pojo對(duì)象缺省是entity目錄,為了與以前的一致,改為domain** pc.setEntity("domain"); 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"; // 自定義輸出配置 List<FileOutConfig> focList = new ArrayList<>(); // 自定義配置會(huì)被優(yōu)先輸出 focList.add(new FileOutConfig(templatePath) { @Override public String outputFile(TableInfo tableInfo) { // 自定義輸出文件名 , 如果你 Entity 設(shè)置了前后綴、此處注意 xml 的名稱會(huì)跟著發(fā)生變化??! return projectPath + "/src/main/resources/mybatis/" + pc.getModuleName() + "/" + tableInfo.getEntityName() + "Mapper" + StringPool.DOT_XML; } }); /* cfg.setFileCreate(new IFileCreate() { @Override public boolean isCreate(ConfigBuilder configBuilder, FileType fileType, String filePath) { // 判斷自定義文件夾是否需要?jiǎng)?chuàng)建 checkDir("調(diào)用默認(rèn)方法創(chuàng)建的目錄"); return false; } }); */ cfg.setFileOutConfigList(focList); mpg.setCfg(cfg); // 配置模板 TemplateConfig templateConfig = new TemplateConfig(); // 配置自定義輸出模板 //指定自定義模板路徑,注意不要帶上.ftl/.vm, 會(huì)根據(jù)使用的模板引擎自動(dòng)識(shí)別 // 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); strategy.setColumnNaming(NamingStrategy.underline_to_camel); strategy.setEntityLombokModel(true); strategy.setRestControllerStyle(true); // 公共父類 //strategy.setSuperControllerClass("com.xiyou.framework.web.controller.BaseController"); //strategy.setSuperEntityClass("com.xiyou.framework.web.domain.BaseEntity"); // 寫于父類中的公共字段 //strategy.setSuperEntityColumns("id"); strategy.setInclude(scanner("表名,多個(gè)英文逗號(hào)分割").split(",")); strategy.setControllerMappingHyphenStyle(true); //xml文件名前再增加模塊名,不需要,加了重復(fù)了 //strategy.setTablePrefix(pc.getModuleName() + "_"); mpg.setStrategy(strategy); //mpg.setTemplateEngine(new FreemarkerTemplateEngine()); mpg.execute(); }
三、 Invalid bound statement (not found)問題
這個(gè)問題搞的時(shí)間最長(zhǎng),比較復(fù)雜,在官網(wǎng)上是如下描述,比較簡(jiǎn)單:
上面方法一遍又一遍查找,沒有發(fā)現(xiàn)問題,我在全新模塊測(cè)試對(duì)比沒有發(fā)現(xiàn)任何問題,后來從第參考文章的看到SqlSessionFactory問題得到啟發(fā),重點(diǎn)研究這個(gè)問題,查然解決了。
原來的程序有Mybatis的配置文件Bean,需要替換為Mybatis-Plus的Bean,代碼如下:
@Configuration //@MapperScan(basePackages = "com.xiyou.project.map.mapper") public class MybatisPlusConfig { @Autowired private DataSource dataSource; @Autowired private MybatisPlusProperties properties; @Autowired private ResourceLoader resourceLoader = new DefaultResourceLoader(); @Autowired(required = false) private Interceptor[] interceptors; @Autowired(required = false) private DatabaseIdProvider databaseIdProvider; @Autowired private Environment env; /** * * mybatis-plus分頁(yè)插件 * */ @Bean public PaginationInterceptor paginationInterceptor() { PaginationInterceptor page = new PaginationInterceptor(); page.setDialect(new MySqlDialect()); return page; } /** * * 這里全部使用mybatis-autoconfigure 已經(jīng)自動(dòng)加載的資源。不手動(dòng)指定 配置文件和mybatis-boot的配置文件同步 * * * * @return * * @throws IOException * */ @Bean public MybatisSqlSessionFactoryBean mybatisSqlSessionFactoryBean() throws IOException { MybatisSqlSessionFactoryBean mybatisPlus = new MybatisSqlSessionFactoryBean(); mybatisPlus.setDataSource(dataSource); mybatisPlus.setVfs(SpringBootVFS.class); String configLocation = this.properties.getConfigLocation(); if (StringUtils.isNotBlank(configLocation)) { mybatisPlus.setConfigLocation(this.resourceLoader.getResource(configLocation)); } mybatisPlus.setConfiguration(properties.getConfiguration()); mybatisPlus.setPlugins(this.interceptors); MybatisConfiguration mc = new MybatisConfiguration(); mc.setDefaultScriptingLanguage(MybatisXMLLanguageDriver.class); // 數(shù)據(jù)庫(kù)和java都是駝峰,就不需要, //mc.setMapUnderscoreToCamelCase(false); mybatisPlus.setConfiguration(mc); if (this.databaseIdProvider != null) { mybatisPlus.setDatabaseIdProvider(this.databaseIdProvider); } mybatisPlus.setTypeAliasesPackage(this.properties.getTypeAliasesPackage()); mybatisPlus.setTypeHandlersPackage(this.properties.getTypeHandlersPackage()); mybatisPlus.setMapperLocations(this.properties.resolveMapperLocations()); // 設(shè)置mapper.xml文件的路徑 String mapperLocations = env.getProperty("mybatis-plus.mapper-locations"); ResourcePatternResolver resolver = new PathMatchingResourcePatternResolver(); Resource[] resource = resolver.getResources(mapperLocations); mybatisPlus.setMapperLocations(resource); return mybatisPlus; } }
替換原來的Mybatis配置文件Bean后,仍然發(fā)以下兩個(gè)問題:
1、我的application.yml配置文件有配置文件選項(xiàng),在上面配置文件中也要加載configration內(nèi)容,存沖突,報(bào)下面錯(cuò)誤。Property ‘configuration' and ‘configLocation' can not specified with together
將application.yml文件中面來配置項(xiàng)刪除。config-Location: classpath:mybatis/mybatis-config.xml
2、查詢表時(shí),沒有正確處理字段中駝峰字段名,上面文件中有下面行,注釋掉即可。
//mc.setMapUnderscoreToCamelCase(false);
看完上述內(nèi)容,你們對(duì)如何把Mybatis遷移到Mybatis-Plus中有進(jìn)一步的了解嗎?如果還想了解更多知識(shí)或者相關(guān)內(nèi)容,請(qǐng)關(guān)注億速云行業(yè)資訊頻道,感謝大家的支持。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。