「 JAVA 」 二月 13, 2022
覆盖 MyBatis Mapper 文件
文章字数 14k 阅读约需 12 mins.
在 通过 -Xbootclasspath/a 参数修改 Spring Boot 应用行为实例 的 场景2 中,我们通过 -Xbootclasspath/a
参数,对 Spring Boot 应用 JAR 包中的 Mapper 文件进行了覆盖,但美中不足的是需要将未修改的 Mapper 文件也重新附加进去。
本文将演示两种仅需将改动的 Mapper 文件覆盖进去的方式。
先让我们看一下,在使用 MyBatis 时,如果仅将修改了的 Mapper 文件(即非全部 Mapper 文件)添加到 bootclasspath...