idea启动springboot项目报错:java: Annotation processing is not supported for module cycles
错误描述:java: Annotation processing is not supported for module cycles. Please ensure that all modules from cycle [A,B] are excluded from annotation processing。有时候可能会出现,即使在pom.xml文件中已经删除了循环依赖的jar包,但是还是报相
·
错误描述:java: Annotation processing is not supported for module cycles. Please ensure that all modules from cycle [A,B] are excluded from annotation processing
通常解决方案是jar包循环依赖,在pom.xml文件中删掉发生循环以来的jar包.
有时候可能会出现,即使在pom.xml文件中已经删除了循环依赖的jar包,但是还是报相关的错,无法启动项目,这是可以删除项目中的project-name.iml文件中的关于循环依赖的jar包配置
<orderEntry type="module" module-name="循环依赖jar包名称" />
更多推荐
所有评论(0)