java.lang.ClassNotFoundException库在测试中工作,但不在main中

时间:2016-03-14 19:33:30

标签: java maven classnotfoundexception

我有一个非常令人沮丧的库问题,我的测试类可以看到它,而不是我的src / main / java类。它编译但在运行时抛出错误。

我没有运气就为构建类路径尝试了一切。

尝试包含外部jar但maven想要依赖,所以添加如下。测试类运行正常,但是主类会抛出错误,而不是在运行时看到类。

    <dependency>
      <groupId>com.ireasoning</groupId>
      <artifactId>snmpv3</artifactId>
      <version>3.0.05</version>
      <scope>system</scope>
      <systemPath>C:/Users/jokrasa/jars/ireasoningtl1.jar</systemPath>
    </dependency>

还有其他人见过这样的问题吗?

0 个答案:

没有答案