0

我观察到spring xml中list的默认实现是ArrayList。

我试过了:

<bean id="employee" class="com.ioc.entity.Employee">
</property>
        <property name="list">
        <list value-type="java.lang.String">
        <value>ABC</value>
        <value>XYZ</value>
        </list>
        </property>
</bean>

此列表上的 getClass() 方法返回 java.util.ArrayList。

是否有任何属性或方式可以覆盖列表的默认实现(可能是 LinkedList 或我想要的任何列表)或任何其他集合(如 map、set 等)?

4

1 回答 1

0

您可以导入 Spring util 并使用列表类引用。

<?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:util="http://www.springframework.org/schema/util"
 xsi:schemaLocation="http://www.springframework.org/schema/beans
                     http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
                     http://www.springframework.org/schema/util
                     http://www.springframework.org/schema/util/spring-util-2.5.xsd">

<bean id="employee" class="com.ioc.entity.Employee">
  <property name="list">
    <util:list id="myLinkedList" value-type="java.lang.String" list-class="java.util.LinkedList">
      <value>ABC</value>
      <value>XYZ</value>
    </util:list>
  </property>
</bean>
于 2018-02-14T18:22:47.470 回答