0

プロパティ ファイルは次のパスにあります。

src\main\resources\META-INF\app-config.properties

私の春の設定ファイルはパスの下にあります:

WebContent\WEB-INF

そして、次のようにプロパティ ファイルを読み込もうとすると、次のようになります。

<context:property-placeholder
        location="classpath:META-INF/app-config.properties" />

私は例外を取得しています:

java.io.FileNotFoundException: class path resource [META-INF/app-config.properties] cannot be opened because it does not exist

applicationContext.xml

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:aop="http://www.springframework.org/schema/aop"
    xmlns:cache="http://www.springframework.org/schema/cache"
    xmlns:context="http://www.springframework.org/schema/context"
    xmlns:jdbc="http://www.springframework.org/schema/jdbc" xmlns:jee="http://www.springframework.org/schema/jee"
    xmlns:jms="http://www.springframework.org/schema/jms" xmlns:jpa="http://www.springframework.org/schema/data/jpa"
    xmlns:lang="http://www.springframework.org/schema/lang" xmlns:mvc="http://www.springframework.org/schema/mvc"
    xmlns:oxm="http://www.springframework.org/schema/oxm" xmlns:p="http://www.springframework.org/schema/p"
    xmlns:task="http://www.springframework.org/schema/task" xmlns:tx="http://www.springframework.org/schema/tx"
    xmlns:util="http://www.springframework.org/schema/util"
    xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
        http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-3.0.xsd
        http://www.springframework.org/schema/cache http://www.springframework.org/schema/cache/spring-cache-3.1.xsd
        http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.1.xsd
        http://www.springframework.org/schema/jdbc http://www.springframework.org/schema/jdbc/spring-jdbc-3.0.xsd
        http://www.springframework.org/schema/jee http://www.springframework.org/schema/jee/spring-jee-3.1.xsd
        http://www.springframework.org/schema/jms http://www.springframework.org/schema/jms/spring-jms-3.0.xsd
        http://www.springframework.org/schema/data/jpa http://www.springframework.org/schema/data/jpa/spring-jpa-1.1.xsd
        http://www.springframework.org/schema/lang http://www.springframework.org/schema/lang/spring-lang-3.1.xsd
        http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-3.1.xsd
        http://www.springframework.org/schema/oxm http://www.springframework.org/schema/oxm/spring-oxm-3.0.xsd
        http://www.springframework.org/schema/task http://www.springframework.org/schema/task/spring-task-3.1.xsd
        http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-3.0.xsd
        http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util-3.0.xsd">

    <import resource="application-Security-Context.xml" />

    <import resource="application-DataAccess-Context.xml" />

    <import resource="application-Service-Context.xml" />

    <context:component-scan base-package="com.myapp" />

    <!-- PERSISTENCE -->
    <context:property-placeholder
        location="classpath:META-INF/app-config.properties" />


    <jee:jndi-lookup id="appDS" jndi-name="MyApp" expected-type="javax.sql.DataSource"/>

    <bean id="persistenceUnitManager"
        class="org.springframework.orm.jpa.persistenceunit.DefaultPersistenceUnitManager">
        <property name="defaultDataSource" ref="appDS" />
    </bean>

    <bean id="entityManagerFactory"
        class="org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean">
        <property name="persistenceUnitManager" ref="persistenceUnitManager" />
        <property name="persistenceUnitName" value="MyApp" />
    </bean>

    <bean id="transactionManager" class="org.springframework.orm.jpa.JpaTransactionManager">
        <property name="entityManagerFactory" ref="entityManagerFactory" />
    </bean>


    <tx:annotation-driven transaction-manager="transactionManager" />
</beans>

applicationContext は、次のように web.xml にロードされます。

<context-param>
        <param-name>contextConfigLocation</param-name>
        <param-value>/WEB-INF/applicationContext.xml</param-value>
    </context-param>

プロジェクトのビルドに ant を使用していますが、この問題に対する ant 構成または eclipse 構成が不足していますか?

蟻の設定:

<zipfileset dir="${basedir}/src/main/resources/META-INF" includes="app-config.properties" fullpath="WEB-INF/classes/META-INF/app-config.properties"/>

また、META-INF フォルダーを eclipse の展開アセンブリに追加しました。

このプロパティ ファイルを正しくロードする方法を教えてください。

4

4 に答える 4

4

<context:property-placeholder location="classpath*:META-INF/app-config.properties" /> これも失敗する場合は、src\main\resources がクラスパスの下にない可能性があります。

于 2012-10-09T18:10:12.043 に答える
0

ここで少し推測してみましょう。Eclipseを使用しているとおっしゃっていますが、例外が発生したときは正確ではありません。Eclipseまたはコマンドラインからです。Eclipse内からの場合は、Eclipseプロジェクトの設定をAntが使用している設定に合わせる必要があります。Project-Propertiesの下に移動しますが、デプロイメントアセンブリではなく、Java Buildパスに移動し、すべてのソース入力(コードとリソースの両方)がそこにあることを確認します。さらに重要なのは、出力ディレクトリがAntが使用しているものと同じに設定されていることを確認することです。ロングショットですが、試してみる価値があります!

于 2012-10-05T11:07:33.857 に答える
0

プロパティ ファイルは実際にコンパイル済みアーティファクトに含まれていますか? ファイルが存在するかどうかを確認できるように、解凍したアーティファクトのディレクトリ リストを見せていただけますか? それとも、Eclipse から直接実行していて、そこにエラーが発生しますか? その場合は、プロジェクトのプロパティを調整して、ディレクトリやファイルを含める必要があります。

于 2012-10-09T15:26:07.010 に答える
0

プロパティファイルに定義されたパスに問題があると思います。次のものを試してみてください。

<context:property-placeholder location="classpath:/META-INF/app-config.properties" />

これがお役に立てば幸いです。

于 2012-10-01T09:15:09.007 に答える