Window « MVC Controller « Spring Q&A





1. How to close window in spring mvc?    stackoverflow.com

I want to close window using button cancel with spring controller and Java. Someone can help?

<input type="submit" value="cancel" action="cancel"/>
In controller:
@RequestMapping(method = RequestMethod.POST, params = "cancel")
    public String cancel(HttpServletRequest ...

2. How can i open a pop-up window from a OnSubit in my Controller?    forum.springsource.org

How can i open a pop-up window from a OnSubit in my Controller? Hi, I need to open a new window with the result of my previous window's checkbox selection. Currently ...