maven项目运行报错:Annotation processing is not supported for module cycles

1.通过Analyze->Analyze Module Dependencies...发现是循环依赖。 
 


2.解决办法
先是找到这个依赖,删掉相关的(右击第一个module选中open module setting-->Dependencies)
 


然后在book-api中的pom.xml找到第二个这个依赖,删掉,重新import Changes need to be imported


如果仅仅删除module中的Dependencies中的相关依赖,有可能没有解决根本性的问题,所以要看一下pom.xml中是否已经存在了相关依赖

原文:https://blog.csdn.net/qq_36743013/article/details/70326771 

你可能感兴趣的:(GIT&MAVEN&SVN,JAVA,IDEA)