Error:java: Annotation processing is not supported for module cycles. Please ensure that all modules from cycle [wzhfunding-admin-webUI01,wzhfunding-admin-componet] are excluded from annotation processing
此类错误,大致意思就是说我wzhfunding-admin-webUI01模块和wzhfunding-admin-componet模块的依赖设置错了…,检查发现这两个模块的pom相互引用造成了死循环,即webUI01模块的pom引入了componet模块的依赖,componet模块的pom中引入了webUI01模块依赖。如图
webUI01模块
compoent模块
果不其然,两个模块设置成相互依赖,类似死循环
解决方案也很简单,把其中的一个依赖删了即可(也不能随便删,我删除的是componet模块中的webUI01依赖,因为componet本身就是作为webUI01的工具模块而被webUI01依赖的,大家处理前一定要先想好模块间的依赖关系),但要注意没有配置maven自动更新的朋友启动web服务前先手动刷新一下maven