1

我有以下资源文件的spring配置,当我在eclipse环境中执行时它运行良好。但是当我将应用程序打包到 JAR 中并执行它时,它不会归档属性文件资源。

    <bean id="propertyConfigurer"
    class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
    <property name="ignoreUnresolvablePlaceholders" value="true" />
    <property name="locations">
        <list>
            <value>classpath:Application.properties</value>
            <value>classpath:database.properties</value>
        </list>
    </property>
</bean>

<!-- define the properties file to use -->
<util:properties id="appProperties" location="classpath:Application.properties" />

当我看到 jar 文件时,所有文件都存在。我正在使用 Maven 来构建程序集。

项目结构:

项目名称 | |--main |-- java |-- 资源

另外,我正在使用此链接(http://stackoverflow.com/questions/13615634/maven-build-assembly-with-dependencies)使用 maven 配置

4

1 回答 1

1

目前没有足够的信息来确切地知道发生了什么。但在我看来,context.xml 中存在一些混淆。首先,我建议将以上所有内容替换为

<context:property-placeholder location="classpath:/Application.properties, classpath:/database.properties" />
于 2012-12-04T00:46:28.277 回答