IIRC you could return null in a controller to inform dispatcher servlet that no view should be painted (the controller took care of the response itself). Unfortunately when using annotations and defaultrequesttoview code like
Code:
public View handle() {
  return null;
}
does not work any more (it looks for a JSP by matching the URL). How is this handled today?