我将在线访问springource.org。
http://static.springsource.org/docs/Spring-MVC-step-by-step/part2.html
在第2章中,最后,它为您添加了一个bean作为前缀,后缀/WEB-INF/jsp/
和.jsp
添加到响应中。
当你转到localhost时,到目前为止代码基本应该加载index.jsp:8080 / springapp /将重定向到localhost:8080 / springapp / hello.htm,它创建一个HelloController的实例,理论上应该将你发送给你到/WEB-INF/jsp/hello.jsp。当我添加前缀/后缀bean并将我的所有引用更改为“hello”而不是完全路径化的jsp文件时,我开始收到以下错误:
message Handler processing failed; nested exception is
java.lang.NoClassDefFoundError: javax/servlet/jsp/jstl/fmt/LocalizationContext
我已经尝试过多次回顾样本并检查拼写错误,但我仍然找不到问题。任何提示或指示?
index.jsp(在webapp的根目录中:
<%@ include file="/WEB-INF/jsp/include.jsp" %>
<%-- Redirected because we can't set the welcome page to a virtual URL. --%>
<c:redirect url="/hello.htm" />
HelloController.java(减去导入和包:
public class HelloController implements Controller {
protected final Log logger = LogFactory.getLog(getClass());
public ModelAndView handleRequest(HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException {
String now = (new Date()).toString();
logger.info("Returning hello view with " + now);
return new ModelAndView("hello", "now", now);
}
}
我的hello.jsp文件:
<%@ include file="/WEB-INF/jsp/include.jsp" %>
<!DOCTYPE html>
<html>
<head>
<title>Hello :: Spring Application</title>
</head>
<body>
<h1>Hello - Spring Application</h1>
<p>Greetings, it is now <c:out value="${now}" /></p>
</body>
</html>
答案 0 :(得分:2)
好像你在这里错过了JSTL jar。尝试下载它并将其放在类路径中以查看它是否有效:Where can I download JSTL jar
答案 1 :(得分:1)
似乎某些必需的jar(s)在classpath中丢失了。 确保在classpath上有 servlet-api-2.x.jar jsp-api-2.x.jar 和 jstl-1.x.jar
答案 2 :(得分:1)
请确保jstl.jar
文件夹位于WEB-INF/lib
文件夹中。
事实上,这是您链接的教程中所述的内容。我猜你错过了这一步:
我们将使用JSP标准标记库(JSTL),所以让我们开始吧 通过将我们需要的JSTL文件复制到'WEB-INF / lib'目录中。复制 来自'spring-framework-2.5 / lib / j2ee'目录的jstl.jar和 来自'spring-framework-2.5 / lib / jakarta-taglibs'的standard.jar 目录到'springapp / war / WEB-INF / lib'目录。