1 Star 0 Fork 0

瓦解/jeecg-boot 基础框架

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
jeecg-boot 配置其他模块 需要修改的配置.txt 1.43 KB
一键复制 编辑 原始数据 按行查看 历史
qwe1372020@qq.com 提交于 2020-09-22 15:31 . config is update
jeecg boot 配置其他模块 需要修改的配置如下
1 修改 org.jeecg.JeecgSystemApplication;
添加如下 注解
@ComponentScan(value="org.jeecg.*") //主配置扫描
@ComponentScan(value="com.merrisa.modules.**") //模块配置扫描
2 修改 org.jeecg.config.mybatis.MybatisPlusConfig;
注解 更新如下
@MapperScan(value={"org.jeecg.modules.**.mapper*","com.merrisa.modules.**.mapper*"}) //其中 org.jeecg.modules.**.mapper* 为主配置 com.merrisa.modules.**.mapper* 为模块配置
3 修改 jeecg-boot-module-system 模块下的 application-* 配置文件
将 其中
mybatis-plus:
mapper-locations: classpath*:org/jeecg/modules/**/xml/*Mapper.xml,classpath*:com/merrisa/modules/**/xml/*Mapper.xml //其中 classpath*:org/jeecg/modules/**/xml/*Mapper.xml 为主配置 classpath*:com/merrisa/modules/**/xml/*Mapper.xml 为模块配置
4 修改 jeecg-boot-base-common 中 org.jeecg.common.aspect.DictAspect 切面类
@Pointcut("execution(public * org.jeecg.modules..*.*Controller.*(..)) || execution(public * com.merrisa.modules..*.*Controller.*(..))")
//其中 execution(public * org.jeecg.modules..*.*Controller.*(..)) 为主配置 execution(public * com.merrisa.modules..*.*Controller.*(..)) //为模块配置
5 修改 org.jeecg.config.Swagger2Config 类 第62行
.apis(basePackage("org.jeecg.modules","com.merrisa.modules"))
//其中 org.jeecg.modules 为主配置 com.merrisa.modules 为模块配置
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Java
1
https://gitee.com/qwe1372020/jeecg-boot-infrastructure.git
git@gitee.com:qwe1372020/jeecg-boot-infrastructure.git
qwe1372020
jeecg-boot-infrastructure
jeecg-boot 基础框架
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385