Spring表单命令可以是Map吗?我通过扩展HashMap并使用['property']
表示法引用属性来使我的命令成为Map,但它不起作用。
命令:
public class MyCommand extends HashMap<String, Object> {
}
HTML表单:
Name: <form:input path="['name']" />
导致错误:
org.springframework.beans.NotReadablePropertyException: Invalid property '[name]' of bean class [com.me.MyCommand]: Bean property '[name]' is not readable or has an invalid getter method: Does the return type of the getter match the parameter type of the setter?
这是不允许的还是我的语法不正确?
答案 0 :(得分:11)
Springn MVC命令需要使用JavaBeans命名conventins(即getXXX()和setXXX()),所以不能使用地图。
一种替代方法是让bean具有单个Map属性,即:
public class MyCommand {
private final Map<String, Object> properties = new HashMap<String, Object>();
public Map<String, Object> getProperties() { return properties; }
// setter optional
}
然后你可以做这样的事情(不是100%肯定语法,但有可能):
Name: <form:input path="properties['name']" />
答案 1 :(得分:3)
结合使用cletus和dbell的答案我实际上可以使它工作并希望与您共享解决方案(包括提交表单时的值绑定,以及针对cletus解决方案报告的缺陷)
您不能直接使用地图作为命令,但是有另一个需要包装惰性地图的域对象
public class SettingsInformation {
private Map<String, SettingsValue> settingsMap= MapUtils.lazyMap(new HashMap<String, SettingsValue>(),FactoryUtils.instantiateFactory(SettingsValue.class));
public Map<String, SettingsValue> getSettingsMap() {
return settingsMap;
}
public void setSettingsMap(Map<String, SettingsValue > settingsMap) {
this.settingsMap = settingsMap;
}
}
SettingsValue是一个实际包装值的类。
public class SettingsValue {
private String value;
public SettingsValue(String value) {
this.value = value;
}
public SettingsValue() {
}
public String getValue() {
return value;
}
public void setValue(String propertyValue) {
this.value = propertyValue;
}
提供模型的控制器方法如下所示:
@RequestMapping(value="/settings", method=RequestMethod.GET)
public ModelAndView showSettings() {
ModelAndView modelAndView = new ModelAndView("settings");
SettingsDTO settingsDTO = settingsService.getSettings();
Map<String, String> settings = settingsDTO.getSettings();
SettingsInformation settingsInformation = new SettingsInformation();
for (Entry<String, String> settingsEntry : settings.entrySet()) {
SettingsValue settingsValue = new SettingsValue(settingsEntry.getValue());
settingsInformation.getSettingsMap().put(settingsEntry.getKey(), settingsValue);
}
modelAndView.addObject("settings", settingsInformation);
return modelAndView;
}
您的表单应如下所示
<form:form action="${actionUrl}" commandName="settings">
<form:input path="settingsMap['exampleKey'].value"/>
<input type="submit" value="<fmt:message key="settings.save"/>"/>
</form:form>
控制器方法处理表单提交正常工作
@RequestMapping(value="/settings", method=RequestMethod.POST)
public ModelAndView updateSettings(@ModelAttribute(value="settings") SettingsInformation settings) {
[...]
}
我验证了SettingsInformation bean实际上是用表单中的值填充的。
感谢您帮我解决这个问题;如果您有任何问题,请随时提出。
答案 2 :(得分:1)
好的,我有一个适用于我的解决方案,我使用MapUtils.lazyMap
//我的根域
public class StandardDomain {
private Map<String, AnotherDomainObj> templateMap= MapUtils.lazyMap(new HashMap<String, AnotherDomainObj>(),FactoryUtils.instantiateFactory(AnotherDomainObj.class));
public Map<String, AnotherDomainObj> getTemplateContentMap() {
return templateMap;
}
public void setTemplateContentMap(Map<String, AnotherDomainObj > templateMap) {
templateMap = templateMap;
}
}
//我的第二个域名
public class AnotherDomainObj {
String propertyValue="";
public String getPropertyValue() {
return propertyValue;
}
public void setPropertyValue(String propertyValue) {
this.propertyValue = propertyValue;
}
}
//在我的JSP中
<input type="text" value="testthis" name="templateMap['keyName'].propertyValue"/>
答案 3 :(得分:-1)
是的它可以但是......您需要将其引用为<form:input path="name[index].key|value"/>
例如
<form:input path="name[0].value"/>