如何使用一个jar Maven读取子jar文件中的属性文件

时间:2019-02-17 08:35:37

标签: java maven jar executable-jar

可能是Read maven.properties file inside jar/war file的复本,但我没有找到解决方法。

我想在falstats.one内的falstats.jar中读取属性文件,这是我在项目中使用的主要jar。

可执行的jar结构如下:

--falstats.one-jar
  |--main
    |--falstats.jar
       |--application.property
  

Pom.xml

<resources>
        <resource>
            <filtering>false</filtering>
            <directory>src</directory>
            <includes>
                <include>**/*.properties</include>
            </includes>
        </resource>
        </resources>

0 个答案:

没有答案