Eclipse问题 A cycle was detected in the build path of project: XXX


解决Eclipse中Java工程间循环引用而报错的问题
如果我们的项目包含多个工程(project),而它们之间又是循环引用的关系,那么Eclipse在编译时会抛出如下一个错误信息:
“A cycle was detected in the build path of project: XXX”
解决方法非常简单:
Eclipse Menu -> Window -> Preferences… -> Java -> Compiler -> Building -> Building path problems -> Circular dependencies -> 将Error改成Warning

但是这样只是解决了表面问题,出现这样的错误可能是你的底层模块引用了你的上层模块导致了项目的循环

转载http://blog.csdn.net/kcai678/article/details/4668993

猜你喜欢

转载自hangyu608.iteye.com/blog/2403620