custom view « Web « Spring Q&A





1. custom editors in view    forum.springsource.org

custom editors in view I have seen a few threads on this issue but couldn't find a solution. The problem is: I want the Custom Property Editors acting on the request ...

2. Forwarding to a JSP view from a custom view    forum.springsource.org

response.setStatus(HttpServletResponse.SC_SERVICE_UNAVAILABLE); response.setHeader("Retry-After", Long.toString(e.getRetryAfter())); errors.reject(e.getMessage(), new Object[]{e.getRetryAfter()}, "Service unavailable"); return new ModelAndView(Views.ERROR.getName(), model);

3. Return custom view after successful file upload    forum.springsource.org

I'm kind of new to using Spring web, but I just finished getting my first file upload controller working, so I'm on my way! What I want to do is, on ...