idea中当前模块资源目录上显示属于其他模块

时间:2022-11-07 17:11:11

一.错误的2个显示

1.错误显示

src/main目录下的java和resources本来属于cloud-consumer-dept-feign模块
但是在src/main/java却是显示src/main/java[cloud-consumer-dept-80]
但是在src/main/resources也是显示src/main/resources[cloud-consumer-dept-80]

idea中当前模块资源目录上显示属于其他模块

2.在 Project Structure中设置报错

idea中当前模块资源目录上显示属于其他模块

设置之后保存,会报错
module "cloud-consumer-dept-feign" must not contain source root "D:\copy\cloud\cloud-consumer-dept-feign\src\test\java". The root already belongs to module "cloud-consumer-dept-80"

二.错误原因

在cloud-consumer-dept-80的Project Structure设置中多了cloud-consumer-dept-feign的资源目录

idea中当前模块资源目录上显示属于其他模块

三.解决方法

将属于cloud-consumer-dept-feign的资源目录从cloud-consumer-dept-80模块的设置中移除

idea中当前模块资源目录上显示属于其他模块

显示恢复正常

idea中当前模块资源目录上显示属于其他模块