代码拉取完成,页面将自动刷新
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 为模块配置
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。