错误提示:Failed to read artifact descriptor forcom.lowagie:itext:jar:2.1.7.js6
解决办法
1.导入JasperReports坐标时排除com.lowagie:itext:jar:的读取。附上一下坐标
<dependency>
<!--jasperreports报表生成工具-->
<groupId>net.sf.jasperreports</groupId>
<artifactId>jasperreports</artifactId>
<version>6.8.0</version>
<!--排除itext,jar读取-->
<exclusions>
<exclusion>
<groupId>com.lowagie</groupId>
<artifactId>itext</artifactId>
</exclusion>
</exclusions>
</dependency>
然后重启
本文介绍了一种解决Failed to read artifact descriptor for com.lowagie:itext:jar:2.1.7.js6错误的方法,通过在依赖项中排除com.lowagie:itext:jar的读取来解决问题。

被折叠的 条评论
为什么被折叠?



