Question

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?

Était-ce utile?

La solution

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) {    
}
Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top