gpt4 book ai didi

spring - 将文本框中的分隔字符串绑定(bind)到 Collection

转载 作者:行者123 更新时间:2023-12-04 00:59:45 29 4
gpt4 key购买 nike

我有一个 <form:input type="text" />可以取多个值的元素,每个值由分号分隔。例如,它可以采用类似 Mike;Jack;Bob 的值。 .

如何为 <input> 绑定(bind)/传递此类值到 Collection<String>在 Spring 3 MVC 中?

最佳答案

你可以注册一个属性编辑器:

@InitBinder
public void initBinder(WebDataBinder binder) {
binder.registerCustomEditor(Collection.class,
new DelimitedCollectionStringEditor());
}

编辑器必须扩展 PropertyEditorSupport

关于spring - 将文本框中的分隔字符串绑定(bind)到 Collection<String>,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6074777/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com