您好,登錄后才能下訂單哦!
這篇文章主要介紹了mybatis xml文件熱加載怎么實現的相關知識,內容詳細易懂,操作簡單快捷,具有一定借鑒價值,相信大家閱讀完這篇mybatis xml文件熱加載怎么實現文章都會有所收獲,下面我們一起來看看吧。
在Spring Boot + Mybatis的常規項目中,通過 org.mybatis.spring.SqlSessionFactoryBean
這個類的 buildSqlSessionFactory()
方法完成對 xml 文件的加載邏輯,這個方法只會在自動配置類 MybatisAutoConfiguration
初始化操作時進行調用。這里把 buildSqlSessionFactory()
方法中 xml 解析核心部分進行展示如下:
通過遍歷 this.mapperLocations
數組(這個對象就是保存了編譯后的所有 xml 文件)完成對所有 xml 文件的解析以及加載進內存。this.mapperLocations
解析邏輯在 MybatisProperties
類的 resolveMapperLocations()
方法中,它會解析 mybatis.mapperLocations
屬性中的 xml 路徑,將編譯后的 xml 文件讀取進 Resource
數組中。路徑解析的核心邏輯在 PathMatchingResourcePatternResolver
類的 getResources(String locationPattern)
方法中。大家有興趣可以自己研讀一下,這里不多做介紹。
通過 xmlMapperBuilder.parse()
方法解析 xml 文件各個節點,解析方法如下:
簡單來說,這個方法會解析 xml 文件中的 mapper|resultMap|cache|cache-ref|sql|select|insert|update|delete
等標簽。將他們保存在 org.apache.ibatis.session.Configuration
類的對應屬性中,如下展示:
到這里,我們就知道了 Mybatis 對 xml 文件解析是通過 xmlMapperBuilder.parse()
方法完成并且只會在項目啟動時加載 xml 文件。
通過對上述 xml 解析邏輯進行分析,我們可以通過監聽 xml 文件的修改,當監聽到修改操作時,直接調用 xmlMapperBuilder.parse()
方法,將修改過后的 xml 文件進行重新解析,并替換內存中的對應屬性以此完成熱加載操作。這里也就引出了本文所講的主角:mybatis-xmlreload-spring-boot-starter
mybatis-xmlreload-spring-boot-starter 這個項目完成了博主上述的實現思路,使用技術如下:
修改 xml 文件的加載邏輯。在原用 mybatis-spring
中,只會加載項目編譯過后的 xml 文件,也就是 target 目錄下的 xml 文件。但是在mybatis-xmlreload-spring-boot-starter中,我修改了這一點,它會加載項目 resources 目錄下的 xml 文件,這樣對于 xml 文件的修改操作是可以立馬觸發熱加載的。
通過 io.methvin.directory-watcher
來監聽 xml 文件的修改操作,它底層是通過 java.nio 的WatchService
來實現。
兼容 Mybatis-plus3.0
,核心代碼兼容了 Mybatis-plus
自定義的 com.baomidou.mybatisplus.core.MybatisConfiguration
類,任然可以使用 xml 文件熱加載功能。
項目的結構如下:
核心代碼在 MybatisXmlReload
類中,代碼展示:
/** * mybatis-xml-reload核心xml熱加載邏輯 */ public class MybatisXmlReload { private static final Logger logger = LoggerFactory.getLogger(MybatisXmlReload.class); /** * 是否啟動以及xml路徑的配置類 */ private MybatisXmlReloadProperties prop; /** * 獲取項目中初始化完成的SqlSessionFactory列表,對多數據源進行處理 */ private List<SqlSessionFactory> sqlSessionFactories; public MybatisXmlReload(MybatisXmlReloadProperties prop, List<SqlSessionFactory> sqlSessionFactories) { this.prop = prop; this.sqlSessionFactories = sqlSessionFactories; } public void xmlReload() throws IOException { PathMatchingResourcePatternResolver patternResolver = new PathMatchingResourcePatternResolver(); String CLASS_PATH_TARGET = File.separator + "target" + File.separator + "classes"; String MAVEN_RESOURCES = "/src/main/resources"; // 1. 解析項目所有xml路徑,獲取xml文件在target目錄中的位置 List<Resource> mapperLocationsTmp = Stream.of(Optional.of(prop.getMapperLocations()).orElse(new String[0])) .flatMap(location -> Stream.of(getResources(patternResolver, location))).toList(); List<Resource> mapperLocations = new ArrayList<>(mapperLocationsTmp.size() * 2); Set<Path> locationPatternSet = new HashSet<>(); // 2. 根據xml文件在target目錄下的位置,進行路徑替換找到該xml文件在resources目錄下的位置 for (Resource mapperLocation : mapperLocationsTmp) { mapperLocations.add(mapperLocation); String absolutePath = mapperLocation.getFile().getAbsolutePath(); File tmpFile = new File(absolutePath.replace(CLASS_PATH_TARGET, MAVEN_RESOURCES)); if (tmpFile.exists()) { locationPatternSet.add(Path.of(tmpFile.getParent())); FileSystemResource fileSystemResource = new FileSystemResource(tmpFile); mapperLocations.add(fileSystemResource); } } // 3. 對resources目錄的xml文件修改進行監聽 List<Path> rootPaths = new ArrayList<>(); rootPaths.addAll(locationPatternSet); DirectoryWatcher watcher = DirectoryWatcher.builder() .paths(rootPaths) // or use paths(directoriesToWatch) .listener(event -> { switch (event.eventType()) { case CREATE: /* file created */ break; case MODIFY: /* file modified */ Path modifyPath = event.path(); String absolutePath = modifyPath.toFile().getAbsolutePath(); logger.info("mybatis xml file has changed:" + modifyPath); // 4. 對多個數據源進行遍歷,判斷修改過的xml文件屬于那個數據源 for (SqlSessionFactory sqlSessionFactory : sqlSessionFactories) { try { // 5. 獲取Configuration對象 Configuration targetConfiguration = sqlSessionFactory.getConfiguration(); Class<?> tClass = targetConfiguration.getClass(), aClass = targetConfiguration.getClass(); if (targetConfiguration.getClass().getSimpleName().equals("MybatisConfiguration")) { aClass = Configuration.class; } Set<String> loadedResources = (Set<String>) getFieldValue(targetConfiguration, aClass, "loadedResources"); loadedResources.clear(); Map<String, ResultMap> resultMaps = (Map<String, ResultMap>) getFieldValue(targetConfiguration, tClass, "resultMaps"); Map<String, XNode> sqlFragmentsMaps = (Map<String, XNode>) getFieldValue(targetConfiguration, tClass, "sqlFragments"); Map<String, MappedStatement> mappedStatementMaps = (Map<String, MappedStatement>) getFieldValue(targetConfiguration, tClass, "mappedStatements"); // 6. 遍歷xml文件 for (Resource mapperLocation : mapperLocations) { // 7. 判斷是否是被修改過的xml文件,否則跳過 if (!absolutePath.equals(mapperLocation.getFile().getAbsolutePath())) { continue; } // 8. 重新解析xml文件,替換Configuration對象的相對應屬性 XPathParser parser = new XPathParser(mapperLocation.getInputStream(), true, targetConfiguration.getVariables(), new XMLMapperEntityResolver()); XNode mapperXnode = parser.evalNode("/mapper"); List<XNode> resultMapNodes = mapperXnode.evalNodes("/mapper/resultMap"); String namespace = mapperXnode.getStringAttribute("namespace"); for (XNode xNode : resultMapNodes) { String id = xNode.getStringAttribute("id", xNode.getValueBasedIdentifier()); resultMaps.remove(namespace + "." + id); } List<XNode> sqlNodes = mapperXnode.evalNodes("/mapper/sql"); for (XNode sqlNode : sqlNodes) { String id = sqlNode.getStringAttribute("id", sqlNode.getValueBasedIdentifier()); sqlFragmentsMaps.remove(namespace + "." + id); } List<XNode> msNodes = mapperXnode.evalNodes("select|insert|update|delete"); for (XNode msNode : msNodes) { String id = msNode.getStringAttribute("id", msNode.getValueBasedIdentifier()); mappedStatementMaps.remove(namespace + "." + id); } try { // 9. 重新加載和解析被修改的 xml 文件 XMLMapperBuilder xmlMapperBuilder = new XMLMapperBuilder(mapperLocation.getInputStream(), targetConfiguration, mapperLocation.toString(), targetConfiguration.getSqlFragments()); xmlMapperBuilder.parse(); } catch (Exception e) { logger.error(e.getMessage(), e); } logger.info("Parsed mapper file: '" + mapperLocation + "'"); } } catch (Exception e) { logger.error(e.getMessage(), e); } } break; case DELETE: /* file deleted */ break; } }) .build(); ThreadFactory threadFactory = r -> { Thread thread = new Thread(r); thread.setName("xml-reload"); thread.setDaemon(true); return thread; }; watcher.watchAsync(new ScheduledThreadPoolExecutor(1, threadFactory)); } /** * 根據xml路徑獲取對應實際文件 * * @param location 文件位置 * @return Resource[] */ private Resource[] getResources(PathMatchingResourcePatternResolver patternResolver, String location) { try { return patternResolver.getResources(location); } catch (IOException e) { return new Resource[0]; } } /** * 根據反射獲取 Configuration 對象中屬性 */ private static Object getFieldValue(Configuration targetConfiguration, Class<?> aClass, String filed) throws NoSuchFieldException, IllegalAccessException { Field resultMapsField = aClass.getDeclaredField(filed); resultMapsField.setAccessible(true); return resultMapsField.get(targetConfiguration); } }
代碼執行邏輯:
解析配置文件指定的 xml 路徑,獲取 xml 文件在 target 目錄下的位置
根據 xml 文件在 target 目錄下的位置,進行路徑替換找到 xml 文件所在 resources 目錄下的位置
對 resources 目錄的 xml 文件的修改操作進行監聽
對多個數據源進行遍歷,判斷修改過的 xml 文件屬于那個數據源
根據 Configuration 對象獲取對應的標簽屬性
遍歷 resources 目錄下 xml 文件列表
判斷是否是被修改過的 xml 文件,否則跳過
解析被修改的 xml 文件,替換 Configuration 對象中的相對應屬性
重新加載和解析被修改的 xml 文件
在 Spring Boot3.0
中,當前博主提供了mybatis-xmlreload-spring-boot-starter在 Maven 項目中的坐標地址如下
<dependency> <groupId>com.wayn</groupId> <artifactId>mybatis-xmlreload-spring-boot-starter</artifactId> <version>3.0.3.m1</version> </dependency>
在 Spring Boot2.0
Maven 項目中的坐標地址如下
<dependency> <groupId>com.wayn</groupId> <artifactId>mybatis-xmlreload-spring-boot-starter</artifactId> <version>2.0.1.m1</version> </dependency>
Maven 項目寫入mybatis-xmlreload-spring-boot-starter坐標后即可使用本項目功能,默認是不啟用 xml 文件的熱加載功能,想要開啟的話通過在項目配置文件中設置 mybatis-xml-reload.enabled
為 true,并指定 mybatis-xml-reload.mapper-locations
屬性,也就是 xml 文件位置即可啟動。具體配置如下:
# mybatis xml文件熱加載配置 mybatis-xml-reload: # 是否開啟 xml 熱更新,true開啟,false不開啟,默認為false enabled: true # xml文件位置,eg: `classpath*:mapper/**/*Mapper.xml,classpath*:other/**/*Mapper.xml` mapper-locations: classpath:mapper/*Mapper.xml
關于“mybatis xml文件熱加載怎么實現”這篇文章的內容就介紹到這里,感謝各位的閱讀!相信大家對“mybatis xml文件熱加載怎么實現”知識都有一定的了解,大家如果還想學習更多知識,歡迎關注億速云行業資訊頻道。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。