Annotation processing is not supported for module cycles:多modules依赖循环异常

项目启动时报错信息:Error:java: Annotation processing is not supported for module cycles. Please ensure that all modules from cycle [supplier-rest-controller,supplier-server] are excluded from annotation processing。这属于supplier-rest-controller和supplier-server两个modules中的依赖项目依赖导致的循环依赖问题,只需要找到相对应的依赖,删除一个即可。

错误信息:

在这里插入图片描述

解决方法:

找到相对应的两个maven所在的pom文件以及maven位置:此时我删除了第二个图中的supplier-server依赖。Annotation processing is not supported for module cycles:多modules依赖循环异常_第1张图片Annotation processing is not supported for module cycles:多modules依赖循环异常_第2张图片
完成以上操作后重新启动项目,如果还是报错,此时清理一下target,重新再启动。

你可能感兴趣的:(常见异常问题)