簡體   English   中英

使用GenericXmlApplicationContext時使用Spring SpEL?

[英]Spring SpEL when using a GenericXmlApplicationContext?

在將某些Spring XML配置顯式加載到GenericXmlApplicationContext對象中時,讓SpEL工作時遇到問題。

您能提供的任何幫助將不勝感激。 這是我的POM文件:

<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/maven-v4_0_0.xsd">
    <modelVersion>4.0.0</modelVersion>
    <groupId>com.example</groupId>
    <artifactId>minimal</artifactId>
    <version>0.0.1-SNAPSHOT</version>
    <packaging>jar</packaging>
    <properties>
       <version.spring>3.2.6.RELEASE</version.spring>
    </properties>
    <dependencies>
       <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-beans</artifactId>
            <version>${version.spring}</version>
       </dependency>
       <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-context</artifactId>
            <version>${version.spring}</version>
       </dependency>
    </dependencies>
</project>

這是Spring 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-3.1.xsd">

    <bean id="defaultPerson" class="java.lang.String">
        <constructor-arg value="World!" />
    </bean>
    <bean id="greeter" class="com.example.Greeter">
        <property name="person" value="#{ getObject('specificPerson') != null ? getObject('specificPerson') : defaultPerson }"/>
    </bean>
</beans>

最后,我的Java代碼

public class Greeter {
    private String person;

    public String sayHello() {
        return String.format("Hello %s", this.person);
    }

    public void setPerson(String person) {
        this.person = person;
    }
}


public class Main {

    public static void main(String[] args) {
        GenericApplicationContext parentContext = new GenericApplicationContext();

                parentContext.getBeanFactory().registerSingleton("specificPerson", "Dave");

        GenericXmlApplicationContext xmlContext = new GenericXmlApplicationContext();
        xmlContext.setParent(parentContext);

        // Load the beans
        xmlContext.load("xmlContext.xml");

        // GenericXmlApplicationContext lazy loads singletons by default and we need them instantiated.
        xmlContext.getBeanFactory().preInstantiateSingletons();

        Greeter greeter = (Greeter) xmlContext.getBean("greeter");

        System.out.println(String.format("Greeter says: [%s]", greeter.sayHello()));
    }
}

我希望看到

Greeter says: [Hello Dave]

但是我看到了:

Greeter says: [Hello #{ getObject('specificPerson') != null ? getObject('specificPerson') : defaultPerson }]

知道為什么嗎? 非常感謝您的幫助-謝謝!

原來我需要添加對refresh()調用。

在對象構造完成后,添加對parentContext.refresh()xmlContext.refresh()的調用。 希望其他人發現這對您有所幫助!

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM