web-dev-qa-db-fra.com

Spring-Boot: comment référencer application.properties dans un @ImportResource

J'ai un fichier applicationContext.xml dans mon application Spring Boot. Dans ce fichier, il a un espace réservé de propriété - $ {profile.services.url} - qui est utilisé pour configurer la propriété "address" d'un bean <jaxws: client>.

Dans ma classe Application.Java, j'importe ce fichier.

@ImportResource("classpath:applicationContext.xml")
public class Application {

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

J'ai "profile.services.url" défini dans application.properties. Cependant, il n'est pas reconnu lors de la construction du bean dans mon fichier XML. J'ai essayé d'ajouter ce qui suit, mais cela ne semble pas fonctionner.

<context:property-placeholder location="classpath:application.properties"/>

Des suggestions sur la façon d'obtenir @ImportResource pour reconnaître la prise en charge des propriétés de Spring Boot?

10
Matt Raible

J'ai le code suivant:

package demo;

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.EnableAutoConfiguration;
import org.springframework.context.ApplicationContext;
import org.springframework.context.annotation.ComponentScan;
import org.springframework.context.annotation.Configuration;
import org.springframework.context.annotation.ImportResource;

import Java.util.Collection;

@ComponentScan
@EnableAutoConfiguration
public class Application {

    public static void main(String[] args) {
        ApplicationContext applicationContext = SpringApplication.run(Application.class, args);
        Collection<Foo> shouldBeConfigured = applicationContext.getBeansOfType(Foo.class).values();
        System.out.println(shouldBeConfigured.toString());
    }
}

@Configuration
@ImportResource("/another.xml")
class XmlImportingConfiguration {
}

class Foo {
    private String name;

    public void setName(String name) {
        this.name = name;
    }

    @Override
    public String toString() {
        return "Foo{" +
                "name='" + name + '\'' +
                '}';
    }

}

J'ai un fichier de configuration XML Spring, another.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"
       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.xsd">

    <context:property-placeholder location="another.properties" />

    <!-- this property value is defined in another.properties, which we install in this XML file
    -->
    <bean class="demo.Foo" >
        <property name="name" value="${name.property}"/>
    </bean>

    <!-- this property value is defined in application.properties, which Spring Boot automatically installs for us.
    -->
    <bean class="demo.Foo" >
        <property name="name" value="${some.property}"/>
    </bean>

</beans>

J'ai les éléments suivants pom.xml:

<?xml version="1.0" encoding="UTF-8"?>
<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>org.demo</groupId>
    <artifactId>demo</artifactId>
    <version>0.0.1-SNAPSHOT</version>

    <name>demo</name>
    <description>Demo project</description>

    <parent>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-parent</artifactId>
        <version>1.0.0.RC1</version>
    </parent>

    <dependencies>

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

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

    <properties>
        <start-class>demo.Application</start-class>
        <Java.version>1.7</Java.version>
    </properties>

    <build>
        <plugins>
            <plugin>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-maven-plugin</artifactId>
            </plugin>
        </plugins>
    </build>

    <repositories>
        <repository>
            <id>spring-snapshots</id>
            <name>Spring Snapshots</name>
            <url>http://repo.spring.io/snapshot</url>
            <snapshots>
                <enabled>true</enabled>
            </snapshots>
        </repository>
        <repository>
            <id>spring-milestones</id>
            <name>Spring Milestones</name>
            <url>http://repo.spring.io/milestone</url>
            <snapshots>
                <enabled>false</enabled>
            </snapshots>
        </repository>
    </repositories>
    <pluginRepositories>
        <pluginRepository>
            <id>spring-snapshots</id>
            <name>Spring Snapshots</name>
            <url>http://repo.spring.io/snapshot</url>
            <snapshots>
                <enabled>true</enabled>
            </snapshots>
        </pluginRepository>
        <pluginRepository>
            <id>spring-milestones</id>
            <name>Spring Milestones</name>
            <url>http://repo.spring.io/milestone</url>
            <snapshots>
                <enabled>false</enabled>
            </snapshots>
        </pluginRepository>
    </pluginRepositories>

</project>

Enfin, j'ai deux .properties des dossiers, another.properties, et application.properties:

# application.properties 
some.property=Test

et..

# another.properties 
name.property=Another

Lorsque je lance cela, la sortie est:

[Foo {name = 'Another'}, Foo {name = 'Test'}]

Ce qui semble fonctionner.

Je ne suis pas sûr de bien comprendre l'erreur. Pouvez-vous élaborer ou confirmer que ce comportement vous semble satisfaisant également?

17
Josh Long

J'ai pu contourner mon problème en configurant mon service Soap dans JavaConfig au lieu de XML:

@Value("${profile.services.url}")
private String profileServiceUrl;

@Bean
public ProfileSoapService profileSoapService() {
    final JaxWsProxyFactoryBean jaxWsProxyFactoryBean = new JaxWsProxyFactoryBean();
    jaxWsProxyFactoryBean.setServiceClass(ProfileSoapService.class);
    jaxWsProxyFactoryBean.setAddress(profileServiceUrl);
    jaxWsProxyFactoryBean.getOutInterceptors().add(getSecurityInterceptor());
    return (ProfileSoapService) jaxWsProxyFactoryBean.create();
}


private WSS4JOutInterceptor getSecurityInterceptor() { ... }
2
Matt Raible