在我们把项目打成jar包时,我们配置了mybatis-generator-maven-plugin 插件,运行时会自动执行,导致我们原来的代码被覆盖,出错。
解决方法:
在配置中把phase的值改为deploy就可以了;
<executions>
<execution>
<id>Generate MyBatis Artifacts</id>
<phase>deploy</phase>
<goals>
<goal>generate</goal>
</goals>
</execution>
</executions>
转载:https://blog.csdn.net/w605283073/article/details/80139472