如何引用部署在 jboss 环境中的 src/main/resources 文件夹中存在的文件



我需要在Web应用程序的src/main/resources文件夹中查找图像。它是一个基于Apache CXF SAOP的Web应用程序。

我们正在jboss env(jboss-eap-6.4)运行它

在建立战争之后,部署了相同的内容。

但是,我无法获得上述文件的正确路径。请指教。

我尝试了多种选择。

File logo= new File("src/main/resources/image.jpg");    
logo.getAbsolutePath(); //  This works great when Junit tested, however breaks with the server. 

这也行不通——

ClassLoader contextClassLoader = Thread.currentThread().getContextClassLoader();
contextClassLoader.getResource("image.jpg").getPath();

由于您使用的是 Maven,因此来自 src/main/resources 的文件将自动出现在类路径中。

要从类路径加载资源,请使用如下所示的内容:

InputStream in = getClass().getResourceAsStream("/image.jpg");

获取资源的路径或将其作为File打开可能并不总是有效,因为该文件可能仍存储在.war文件中。 因此,class.getResource()将返回一个只能由应用服务器的类装入器识别的URL

这是我

在Maven项目中的文件结构:

src/main/resources/
src/main/resources/META-INF
src/main/resources/adir
src/main/resources/adir/afile.json

最后,这对我有用:

String resourceName = "adir/afile.json";
ClassLoader classLoader = Thread.currentThread().getContextClassLoader();
URL resource = classLoader.getResource(resourceName);
InputStream iStream = resource.openStream();
byte[] contents = iStream.readAllBytes();
System.out.println(new String(contents));

呵呵,托马斯

相关内容

  • 没有找到相关文章

最新更新