1.在父目录pom.xml
文件下导入新增模块依赖
2.在子模块ruoyi-admin
中导入新增依赖
3.新模块增加ruoyi-common
配置,或按需通过maven
配置依赖(common
–>system
–>framework
,导入framework
依赖)
4.重新打包编译
1.进入ruoyi-admin
启动类
2.在核心注解SpringBootApplication
中添加scanBasePackages = {“包名称”,“com.ruoyi”}
@SpringBootApplication(scanBasePackages = {"com.example.newmodule", "com.ruoyi"})
前面的是新增模块包名,后面的是若依框架包名
3.新增@MapperScan("com.example.newmodule.mapper")
@MapperScan("com.example.newmodule.mapper")
新增模块的
mapper
com.example.newmodule.mapper
是新模块的mapper路径
只需要打开 SecurityConfig.java
添加
.antMatchers(“/system/**”).permitAll() 即可**
“/system/**” 是controller中@RequestMapping的路径
这样做可以确保新模块的认证通过,不再出现401认证失败的问题
powered by kaifamiao