0

我有两个 jar 文件。

  • MyProduct.jar(业务逻辑)
  • MyProductFixture.jar。(调用 bl 的夹具)

MyProductFixture.jar 依赖于 MyProduct.jar。

当我尝试运行 Fitnesse 调用 MyProductFixture 中的夹具时,我得到了 MyProduct.jar 中某个类的 ClassNotFoundException。

尝试在命令行上设置 -classpath java 参数失败,因为 -jar 命令忽略 -classpath 参数。

如何解决外部依赖?

4

1 回答 1

1

在 Fitnesse 页面上,我必须添加两个类路径引用。

首先到夹具。(很明显),第二个是外部依赖。关键是 *

!path /path/to/MyProductFixture.jar
!path /path/to/my/product/*

请注意以下内容不起作用

!path /path/to/MyProduct.jar
于 2010-07-15T04:54:41.557 回答