如何在 Spring XML 中配置 java.util.Locale 列表?
这是我尝试过的(显然没有用..):-
<bean
class="x.y.z.CommandBean"
scope="prototype">
<property name="locales">
<list value-type="java.util.Locale">
<value>Locale.US</value>
<value>Locale.FR</value>
</list>
</property>
</bean>
例外 :-
org.springframework.beans.TypeMismatchException: Failed to convert value of type 'java.lang.String' to required type 'java.util.Locale';
另外,有什么方法可以将语言环境作为逗号分隔的值移动到 .properties 文件中?