I want to delegate to Spring automatic mapping of HTML FORM fields to my model class. Is it possible?

I have a method:

@ActionMapping(params = "action=actionOne")
public void actionOne(ActionRequest request, ActionResponse response) {    
}

This method processes the form submitting. And I want to create class like Document and I want automatic mapping of form fields to Document class. How to done this with Spring Portlet MVC?

有帮助吗?

解决方案

You need to use Spring form Tag.

Refer this.

And change your Controller appropriately

@ActionMapping(params = "action=actionOne")
public void actionOne( (@ModelAttribute("document") Document document, ActionRequest request, ActionResponse response) {    
}
许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top