manven多模块+mybatisplus自动生成代码 577 B

123456789101112131415161718
  1. 1添加依赖
  2. <dependency>
  3. <groupId>com.baomidou</groupId>
  4. <artifactId>mybatis-plus-generator</artifactId>
  5. <version>3.3.0</version>
  6. </dependency>
  7. <dependency>
  8. <groupId>org.apache.velocity</groupId>
  9. <artifactId>velocity-engine-core</artifactId>
  10. <version>2.1</version>
  11. </dependency>
  12. 2 把MybatisGeneratorUtils.java放到自己的项目,修改配置
  13. 参考链接
  14. https://blog.csdn.net/u010559460/article/details/103945985/
  15. https://blog.csdn.net/qq_32331997/article/details/74908570