博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
如何排除jar包冲突
阅读量:5924 次
发布时间:2019-06-19

本文共 974 字,大约阅读时间需要 3 分钟。

 

今天新引入了一个二方库,引入后发现程序无法启动,有冲突和循环引用的问题。报错信息如下:

 

 Caused by: java.lang.IllegalStateException: Unable to complete the scan for annotations for web application [] due to a StackOverflowError. Possible root causes include a too low setting for -Xss and illegal cyclic inheritance dependencies. The class hierarchy being processed was [org.eclipse.jdt.core.CompletionContext->org.eclipse.jdt.internal.codeassist.InternalCompletionContext->org.eclipse.jdt.core.CompletionContext]

 

commond + o 全局搜索引用org.eclipse.jdt.core.CompletionContext的文件, 

 

找到相关的jar包然后写exlusion排除一下就可以了 

 

 

 

com.xxx.community.services
xxx-community-facade-api
1.2-SNAPSHOT
org.aspectj
*

 

转载于:https://www.cnblogs.com/iwangzheng/p/7161095.html

你可能感兴趣的文章
Telnet部署与启动 windows&&linux
查看>>
行列式的乘法定理
查看>>
有1000瓶水,3个瓶子可以再换1瓶,一共可以喝多少瓶?
查看>>
Search in Rotated Sorted Array ||
查看>>
NUC_HomeWork1 -- POJ2067(最短路)
查看>>
卸载mysql
查看>>
二叉树的遍历
查看>>
The Distinguish of the share or static lib in MFC
查看>>
如何导出数据库的数据词典
查看>>
linux下内存释放问题
查看>>
让Java和JavaScript进行交互
查看>>
android 上传文件
查看>>
linux逻辑卷管理
查看>>
java结合testng,利用mysql数据库做数据源的数据驱动实例
查看>>
LINQ之路12:LINQ Operators之数据转换(Projecting)
查看>>
SQL Server:数据库角色
查看>>
分享8个超棒的基于HTML5和jQuery的开发教程
查看>>
JFreeChart开发_用JFreeChart增强JSP报表的用户体验
查看>>
SpringMVC+Swagger详细整合
查看>>
计算机视觉领域最全汇总(第2部分)
查看>>