在Spring MVC中访问属性编辑器中的模型对象

时间:2013-10-15 07:15:45

标签: spring-mvc custom-object propertyeditor spring-mvc-initbinders

我有一个两个自定义对象的Map作为我的Model对象中的属性,我通过直接将它绑定在<form:select>

的path和items属性中来显示在JSP中
<form:select id="selectedpbrtypes" multiple="true" items="${prescriber.selectedpbrtypes}" path="selectedpbrtypes"/> 

在提交时,我得到一个逗号分隔的字符串,其中包含<form:options>的所有选定值。 现在我想要访问Model对象

的单独属性的问题
private Map<Integer, PrescriberTypeModel> availablePbrTypes

使用availablePbrTypes根据属性编辑器的setAsText方法中逗号分隔字符串中的值获取所有PrescriberTypeModel并创建Map。 请帮忙,因为我不知道如何访问属性编辑器中的其他对象。

0 个答案:

没有答案