views:

150

answers:

1

Which method is better to used to handle the request whether to use requestHandle of AbstractController or formBackingObject of AbstractFormController in the spring framework?

A: 

Not much information given...

If you are a beginner and not tied to any spcific version of Spring I'd suggest looking at the spring 3.0 MVC implementation.

It is annotation driven so you can define your own methods to use.

See here for docs:

http://static.springsource.org/spring/docs/3.0.x/spring-framework-reference/html/mvc.html#mvc-features

Pablojim