Spring は、src/main/resources 内でプロパティ ファイル (MyPropFile.properties) を見つけることができず、以下のような例外をスローします。
java.io.FileNotFoundException: class path resource [file*:/src/main/resources/MyPropFile.properties] cannot be opened because it does not exist
しかし、プロジェクトのルート (MyProject/MyPropFile.properties) に MyPropFile.properties を配置すると、Spring がそれを見つけて、プログラムが適切に実行されます。
.properties ファイルを src/main/resources 内に配置できるようにこれを構成するにはどうすればよいですか
これは私の名前空間です
<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:context="http://www.springframework.org/schema/context"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
http://www.springframework.org/schema/aop
http://www.springframework.org/schema/aop/spring-aop-3.0.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context-3.0.xsd
">
これは私の豆です
<context:property-placeholder location="classpath:MyPropFile.properties" />
ジャワ:
@Value("${message.fromfile}")
private String message;
よろしくお願いします。