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 likedoes not work any more (it looks for a JSP by matching the URL). How is this handled today?Code:public View handle() { return null; }


Reply With Quote