我可以在bean id属性中使用Spring EL吗?

我可以在bean的id属性中使用SpEL吗?

例如:
 < bean id =“#{T(com.om.m).PublicStaticFinalStringProperty}”…… 这种方式不起作用,我应该改变什么,或者不可能?

最佳答案 奇怪但可能(样本使用春季3.1).不同版本的工作:

<?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: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/context http://www.springframework.org/schema/context/spring-context.xsd
            http://www.springframework.org/schema/util    http://www.springframework.org/schema/util/spring-util.xsd
       ">

    <context:property-placeholder properties-ref="myProps"/>

    <util:properties id="myProps" >
        <prop key="x.y.z">possible</prop>
    </util:properties>

    <bean id="testBean" class="Bean">
        <property name="value" value="weird"/>
    </bean>

    <bean id="${x.y.z}" class="Bean">
        <property name="value" value="but"/>
    </bean>

    <bean id="#{testBean.value}" class="Bean">
        <property name="value" value="${x.y.z}"/>
    </bean>

</beans>

Bean.java

public class Bean implements InitializingBean {

    String value;

    public void setValue(String value) {
        this.value = value;
    }

    public void afterPropertiesSet() throws Exception {
        System.out.println(value);
    }

}
点赞