如何引用部署在jboss env中的src / main / resources文件夹中的文件?

时间:2019-01-12 15:50:36

标签: java jboss-eap-6

我需要查找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();

2 个答案:

答案 0 :(得分:1)

由于您正在使用Maven,因此src/main/resources中的文件将自动在类路径上结束。

要从类路径中加载资源,请使用以下内容:

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

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

答案 1 :(得分:0)

这是我在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));

HTH, 托马斯