其他分享
首页 > 其他分享> > spring-将文本框中的定界字符串绑定到Collection

spring-将文本框中的定界字符串绑定到Collection

作者:互联网

我有一个< form:input type =“ text” />可以采用多个值的元素,每个值均以分号分隔.例如,可以采用诸如Mike; Jack; Bob之类的值.

如何为< input>绑定/传递这种类型的值到Collection< String>在Spring 3 MVC中?

解决方法:

您可以注册属性编辑器:

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

编辑器必须在其中扩展PropertyEditorSupport的地方

标签:spring-3,spring,spring-mvc
来源: https://codeday.me/bug/20191208/2091081.html