http « MVC Controller « Spring Q&A





1. Spring 3.0 HEAD Requests    stackoverflow.com

recently we moved to spring 3.0 Controller handling like this:

@Controller
public class MyController
{
   @RequestMapping(method = RequestMethod.POST)
   protected String onSubmit ( Form form, Errors errors)
   {
  ...

2. Error 500 MVC Spring controller    stackoverflow.com

I have a Spring 3 web application. I have a bunch of mvc controllers that render simple pages. My problem is that when I monitor network activity using firefox or fiddler2, ...

3. s/mime over http and spring controller    forum.springsource.org

s/mime over http and spring controller Hello, I am developping a B2B application composed of two applications. The client application is responsible to forward a file over http encapsulated into a ...

4. Spring 2.5 MVC controller returning only Http status codes    forum.springsource.org

Spring 2.5 MVC controller returning only Http status codes Hi, I would like to return only Http status codes when a controller is called. I do not need any view. Is ...

5. How to use annotation-defined controller to output XML directly through HTTP?    forum.springsource.org

How to use annotation-defined controller to output XML directly through HTTP? I started to use Spring 2.5 with Annotation, after using Spring 2.0 a long time ago. I searched on this ...

6. Same resource (but different HTTP method) handled by two controllers    forum.springsource.org

Same resource (but different HTTP method) handled by two controllers Hello, in my current project, there is functionality to register/unregister "mailboxes" and to post messages to mailboxes. This functionality is exported ...

7. HTTP 404 error when adding interceptor on controllers implementing an interface    forum.springsource.org

HTTP 404 error when adding interceptor on controllers implementing an interface Hi, I encounter a strange problem using interceptors on controllers implementing an interface. When I call the controller from a ...