使用属性中的值列表自动装配bean

时间:2012-12-05 13:52:17

标签: spring-mvc javabeans

我的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"
    xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd">

    <bean id="filterBySlic" class="ca.ups.tundra.msg.FilterMessagesBySlic">
        <property name="slicList">
            <list><value>4196</value><value>1101</value><value>2795</value></list>
        </property>
        <property name="messageList">
            <list><value>7762</value><value>7765</value><value>7766</value><value>7767</value><value>7768</value></list>
        </property>
        <property name="serviceLevelList">
            <list><value>E1</value><value>E3</value><value>E4</value><value>29</value></list>
        </property>
        <property name="serviceTypeList">
            <list><value>029</value><value>096</value></list>
        </property>
    </bean>

</beans>

这就是我在课堂上使用的内容:

ApplicationContext context = new ClassPathXmlApplicationContext(new String[] {"spring-pred-filter.xml"});

FilterMessagesBySlic filterConfig = (FilterMessagesBySlic)context.getBean("filterBySlic");

访问值列表的条件;

filterConfig.getSiteList().contains(msgSlic)

工作正常。 相反,我需要使用@Autowired来访问这些值列表!任何建议

1 个答案:

答案 0 :(得分:1)

您可以将列表从匿名内部bean更改为普通bean,并将其注入其他bean中,如下所示:

xml配置

<util:list id="slicList" value-type="java.lang.String">
    <value>4196</value>
    <value>1101</value>
    <value>2795</value>
</util:list>

在bean中注入slicList

public class Foo {
    @Resource(name = "slicList")
    List<String> messageList;
}

这意味着Foo的实例由spring管理。

是你在找什么?