无法在 cobertura 的仪器化 jar 上找到资源
我有一个应用程序尝试通过以下方式在给定 Jar 上加载资源:
getClass().getClassLoader().getResourceAsStream("Resources/someresource.xml");
当使用 Cobertura 的 Jar 检测版本时,返回 null。
当使用同一 Jar 的未检测版本时,资源流按请求返回。
有人可以帮忙吗?
I have an application that tries to load a resource on a given Jar, by the following way:
getClass().getClassLoader().getResourceAsStream("Resources/someresource.xml");
When working with an instrumented version of the Jar by Cobertura, null is returned.
When Working with the the un-instrumented version of the same Jar, the resource stream returned as requested.
Can someone help?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
好吧,我没有找到原因,但忽略仪器上的资源文件确实有帮助。实际上,因为我正在使用 Jetty - 我将“Resources/someresource.xml”复制到 WEB-INF 的 /class 目录下并且它起作用了。
Well, I didn't find the cause of this, but ignoring the resource file on instrumentation did help. Actually, because I'm working with Jetty - I copied "Resources/someresource.xml" under the /class directory of the WEB-INF and it worked.