我想要一些列表这是一个不可改变的列表
final List<Student>students=Collections.EMPTY_LIST;
但是我希望它从Spring容器中检索我该怎么做。
我有类似的东西
<util:list id="inmutableEmptyStudentList" value-type="com.model.Student">
但我怎么能告诉Spring使用
创建我的ListCollections.EMPTY_LIST
任何帮助都非常感激。
非常感谢
答案 0 :(得分:0)
您将无法使用<util:list>
。您需要使用static
工厂方法。由于Collections
有一个返回emptyList()
的{{1}}方法,您可以
EMPTY_LIST