web-dev-qa-db-ja.com

SpringBoot-プロパティはapplication.propertiesからxmlで解決できませんでした

スプリングブートアプリケーションがあります

私の_@Configuration class_は、次の行を含む@ImportResource("path/to/xml")を使用してxml構成をロードします

_<property name="bla" value="${log.directory}/file.ext" />
_

_src/main/resources_の下に、次の内容の_application.properties_ファイルがあります。

_log.directory=C:/path/I/Need
_

ただし、実行すると、次のようにプロパティを読み込めません。

_Caused by: Java.lang.IllegalArgumentException: Could not resolve placeholder 'log.directory' in string value "${log.directory}/file.ext_ "

8
mangusbrother

Xmlにcontext:property-placeholderを追加することで解決できます。そうすれば、Springに特定のプロパティファイルをロードするように指示できます。

ただし、Spring Bootソリューションに沿ったもう1つの方法は、プロパティファイルの名前としてapplication.propertiesを使用し、予想される場所の1つに配置し、@ EnableAutoconfigurationアノテーションを使用することです。

Spring Bootは、優先順に次の場所にapplication.propertiesがあることを想定しています。

  1. 現在のディレクトリの/ configサブディレクトリ。
  2. 現在のディレクトリ
  3. クラスパス/ configパッケージ
  4. クラスパスルート

私はこれを試しましたが、うまくいきました。

pom.xml

<project xmlns="http://maven.Apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://maven.Apache.org/POM/4.0.0 http://maven.Apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>
    <groupId>sample</groupId>
    <artifactId>sample</artifactId>
    <version>0.0.1-SNAPSHOT</version>
    <name>Sample</name>
    <description>Spring Boot sample</description>

    <parent>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-parent</artifactId>
        <version>1.1.8.RELEASE</version>
    </parent>

    <dependencies>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter</artifactId>
        </dependency>
    </dependencies>

    <!-- Package as an executable jar -->
    <build>
        <plugins>
            <plugin>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-maven-plugin</artifactId>
            </plugin>
        </plugins>
    </build>
</project>

Sample.Java

package sample;

import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.boot.CommandLineRunner;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.EnableAutoConfiguration;
import org.springframework.context.annotation.ComponentScan;
import org.springframework.context.annotation.Configuration;
import org.springframework.context.annotation.ImportResource;

@Configuration
@EnableAutoConfiguration
@ComponentScan
@ImportResource("classpath:beans.xml")
public class Sample implements CommandLineRunner {

    @Value("${sample}")
    private String sample;

    @Autowired
    SampleService service;

    public static void main(String[] args) {
        SpringApplication.run(Sample.class, args);
    }

    public void run(String... args) {
        System.out.println(service.greetings());
    }
}

SampleService.Java

package sample;


public class SampleService {

    private String field;

    public String greetings() {
        return field;
    }

    public String getField() {
        return field;
    }

    public void setField(String field) {
        this.field = field;
    }
}

beans.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:context="http://www.springframework.org/schema/context"
  xmlns:p="http://www.springframework.org/schema/p"
  xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
        http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.0.xsd">

    <bean class="sample.SampleService">
        <property name="field" value="${sample}-world"></property>
    </bean>
</beans>

application.properties

sample=hello

プログラムを実行すると、出力にhello worldが表示されます。

自動構成が有効になっていることを確認してください。そうしないと、期待どおりに機能しません。これを行うには、例のように@EnableAutoconfigurationアノテーションを追加します。

Spring Bootを使用しているため、XML構成を避けることをお勧めします。 Beans.xmlをまったく使用しなくても同じ結果を得ることができます。ただし、それでも必要な場合は、XMLと注釈を混在させることができます。

両方のサンプルプロジェクトをGitHubにアップロードしました。確認してください。

https://github.com/plopcas/example-spring-boot/tree/master/spring-boot-xml

https://github.com/plopcas/example-spring-boot/tree/master/spring-boot

お役に立てれば。

10
Pedro Lopez