Spring bean 定义:String 数组的 ArrayList
如何在 xml 配置文件中定义与此属性匹配的 Spring bean?
private List<String[]> durations;
我有不同的东西,但它们似乎都不起作用 - 我从解析器中得到异常。
谢谢 !
How can I define a Spring bean in an xml config file matching this attribute ?
private List<String[]> durations;
I've different things, but none of them seems to work - I'm getting exception from the parser.
Thank you !
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以在 Spring 应用程序上下文中的
中尝试使用
。
由 spring 转换为真正的java.util.List
或数组。You could try a
<list>
in<list>
in the spring application context. A<list>
is converted by spring to either a realjava.util.List
or an array.试试这个:
如果你用逗号分隔值,Spring 应该为你执行转换。
值是一个 String[] 数组
Try this:
Spring should carryout the conversion for you if you seperate the values with comma's.
values is a String[] array
尝试不使用泛型类型:
私有列表持续时间;
Try without generic type :
private List durations;