我有一个 JSP,当单击 URL 时,我想用它来调用控制器(链接到另一个 JSP 页面),我的代码如下:
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
<html>
<body>
<h1>Spring MVC Hello World Example</h1>
<h2>${msg}</h2>
<a href="/FileMonitor/ResultPage/">click</a>
</body>
</html>
我想上的课在/FileMonitor/ResultPage/
这里:
@Controller
@RequestMapping(value="/Result")
public class ResultController extends AbstractController {
@Override
protected ModelAndView handleRequestInternal(HttpServletRequest request,
HttpServletResponse response) throws Exception {
ModelAndView model = new ModelAndView("ResultPage");
model.addObject("msg", "result");
return model;
}
}
但是我得到了 404,谁能看到我做错了什么?如何从 JSP 页面访问控制器?