摘要:
MyBatis-Plus在实际工作中常用到的配置,供自己和大家查阅学习。 mybatis-plus: mapperPackage: com.**.**.mapper # 对应的 XML 文件位置 mapperLocations: classpath*:mapper/**/*Mapper.xml # 阅读全文
摘要:
MyBatis-Plus官网的代码生成器配置不是特别全,在此整理了较为完整的配置,供自己和大家查阅学习。 // 代码生成器 AutoGenerator mpg = new AutoGenerator(); // 全局配置 GlobalConfig gc = new GlobalConfig(); / 阅读全文