barcode4j 依赖 JasperReports 中出现错误

问题描述 投票:0回答:1

当我尝试运行此错误时:

出现意外错误(类型=内部服务器错误,状态=500).org/krysalis/barcode4j/ChecksumMode java.lang.NoClassDefFoundError:org/krysalis/barcode4j/ChecksumMode

我把依赖放在maven中:

            <dependency>
            <groupId>net.sf.barcode4j</groupId>
            <artifactId>barcode4j</artifactId>
            <version>2.1</version>
        </dependency>

然后我清理并安装它仍然不断出现此错误。我查看了 /.m2/repository/net/sf/barcode4j/barcode4j/2.1/barcode4j.jar 目录,它就在那里,有人知道必须做什么吗?

我正在使用 spring 框架。

java spring maven jasper-reports
1个回答
0
投票

你有错误的依赖。

<dependency>
  <groupId>com.singingbush</groupId>
  <artifactId>barcode4j</artifactId>
  <version>2.2.1</version>
</dependency>

这是您应该使用的,而不是您现在拥有的旧的。

© www.soinside.com 2019 - 2024. All rights reserved.