@Controller @RequestMapping(value="/home.htm") public class HomeController extends Object
| Constructor and Description |
|---|
HomeController() |
| Modifier and Type | Method and Description |
|---|---|
org.springframework.web.servlet.ModelAndView |
handleRequest(javax.servlet.http.HttpServletRequest request,
javax.servlet.http.HttpServletResponse response)
Standard handleRequest Method, in this case simply returns the view that the
user requested.
|
@RequestMapping(method=GET)
public org.springframework.web.servlet.ModelAndView handleRequest(javax.servlet.http.HttpServletRequest request,
javax.servlet.http.HttpServletResponse response)
throws javax.servlet.ServletException,
IOException
request - - Standard HttpServletRequest, not usedresponse - - Standard HttpServletResponse, not usedjavax.servlet.ServletException - - Servlet based ExceptionIOException - - IO based Exception
Suppress unused warnings as handleRequest is called by Spring frameworkCopyright © 2007-2015 Ikasan. All Rights Reserved.