Take a look at Spring MVC. Like Spring itself, it's pretty easy to use. The official Spring docs contain a step-by-step tutorial on Spring MVC that is very good.
I'm not that familiar with ASP.NET MVC, but it ought to be pretty similar.
You implement a Controller that contains a handleRequest(HttpServletRequest, HttpServletResponse) method, which returns a ModelAndView object. The response is then dispatched to your view (probably a jsp file), allowing you to completely seperate code from the actual JSP file.
I know that ASP.NET MVC automatically maps requests to controllers by the URL, and different URLs map to different "actions" (like Ruby on Rails, I think?) - Spring MVC doesn't do this (unless you change the behavior of DispatchServlet, I think). Instead you map all *.htm requests (or *.jsp, or *.do, or whatever extension you want) to Spring's DispatchServlet, which reads the ApplicationContext (a XML file) to determine which Controller to map to your hello.htm request.
Spring MVC also gives you a series of other Controllers you can use if you are looking to add more functionality, such as SimpleFormController and AbstractWizardFormController to create wizard-like forms with multiple pages/flows.
I'm looking to use Spring MVC at work to replace a series of apps that are nothing but several dozen JSP files, with no middle or business layers, code that lives side-by-side in scriptlet tags next to HTML content. It's a maintenance mess. I'm excited to see what Spring MVC will do for us in replacing this.