gpt4 book ai didi

java - Spring 3 集合绑定(bind)

转载 作者:行者123 更新时间:2023-11-30 09:57:31 26 4
gpt4 key购买 nike

我如何将集合绑定(bind)到输入数据的表单(不用于显示)

最佳答案

例如对于 Set<Jokers>

protected void initBinder(HttpServletRequest request, ServletRequestDataBinder binder) throws Exception {
binder.registerCustomEditor(
Set.class,
"[nameOfTheClassMemberItShouldGoto]",
new CustomCollectionEditor(Set.class) {
protected Object convertElement(Object element) {
return (element == null ? null : getQueryService().getJoker(element.toString()));
}
}
);
}

或类似于此

关于java - Spring 3 集合绑定(bind),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1681882/

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