如何在 Fitnesse 中引用外部类
我有两个 jar 文件。
- MyProduct.jar(业务逻辑)
- MyProductFixture.jar。 (调用 bl 的固定装置)
MyProductFixture.jar 依赖于 MyProduct.jar。
当我尝试运行 Fitnesse 来调用 MyProductFixture 中的固定装置时,我收到 MyProduct.jar 中的类的 ClassNotFoundException。
尝试在命令行上设置 -classpath java 参数失败,因为 -jar 命令忽略 -classpath 参数。
如何解决外部依赖?
I have two jar files.
- MyProduct.jar (The business logic)
- MyProductFixture.jar. (The fixture that calls the bl)
The MyProductFixture.jar has a dependency on MyProduct.jar.
When I try to run fitnesse calling the fixture in MyProductFixture, I get a ClassNotFoundException for a class in MyProduct.jar.
Attempting to set the -classpath java parameter on the command line fails because the -jar command ignores the -classpath parameter.
How can I resolve the external dependency?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 Fitnesse 页面上,我必须添加两个类路径引用。
首先是固定装置。 (显而易见),第二个是外部依赖。关键是 *
注意以下内容不起作用。
On the Fitnesse page I had to add two classpath references.
First to the fixture. (Obvious), the second to the external dependency. The key is the *
Notice the following does NOT work.