gpt4 book ai didi

java - jboss war中如何加载资源文件-wildfly9.xV

转载 作者:行者123 更新时间:2023-11-30 07:25:25 24 4
gpt4 key购买 nike

我的java项目中的资源文件夹下有资源。当我使用以下方法 [2] 加载资源时,它正在工作。但是当我在 Wildfly 9.x 中部署 war 时,它说找不到 file.avsc 文件。它给出的类路径为[1];如何在jboss war中加载资源文件?

[1]

java.io.FileNotFoundException:/content/ratha.war/WEB-INF/lib/core-0.0.1-SNAPSHOT.jar/avro_schemas/file.avsc(没有这样的文件或目录)

[2]

ClassLoader classLoader = getClass().getClassLoader();

ClassLoader classLoader = this.getClass().getClassLoader();

ClassLoader classLoader = Thread.currentThread().getContextClassLoader();

File file = new File(classLoader.getResource("avro_schemas/file.avsc").getFile());

最佳答案

尝试使用Class.getResourceAsStream()方法:

this.getClass().getResourceAsStream("avro_schemas/file.avsc");

您可能需要稍微修改一下路径。以下是有关如何构建路径的正式文档:Class.getResourceAsStream

问题在于 Jboss 如何创建它的 ClassLoader 结构。您需要构造路径以匹配类在 ClassLoader 类路径中的表示方式。

对此的其他很好的描述可以在这里找到:How to read a file from jar in Java?在这里:How can I read a resource file in an unexploded war file deployed in Tomcat?

它建议您应该有一个前导“/”来开始文件的路径。

关于java - jboss war中如何加载资源文件-wildfly9.xV,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36877225/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com