我见过与此类似的其他问题,但没有一个能帮助我解决我的问题。基本上,我试图将变量从 servlet 传递给 JSP。
小服务程序代码。
package com.servlets;
import java.io.IOException;
import java.util.ArrayList;
import javax.servlet.annotation.WebServlet;
import javax.servlet.RequestDispatcher;
import javax.servlet.ServletException;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import com.dao.DataGetter;
@WebServlet("/DataGetterServlet")
public class DataGetterServlet extends HttpServlet {
private static final long serialVersionUID = 1L;
ArrayList<String[]> data;
private DataGetter dg;
public void init() throws ServletException {
try {
dg = new DataGetter();
data = dg.getData();
} catch (Exception e) {
throw new ServletException("An exception occurred in DataGetterServlet: "
+ e.getClass().getName());
}
}
protected void doGet(HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException {
request.setAttribute("data", data);
RequestDispatcher rd = request.getRequestDispatcher("index.jsp");
rd.forward(request, response);
}
}
我的 JSP 代码
<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
pageEncoding="ISO-8859-1"%>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Data extractor</title>
</head>
<body>
Data table:
<table boder="1">
<c:forEach var="item" items="${data}" >
<tr>
<c:forEach var="column" items="${item}">
<td>${column}</td>
</c:forEach>
</tr>
</c:forEach>
</table>
</body>
</html>
我已经用 forEach 标记做了一些测试,并且 JSTL 设置正确。我认为变量“数据”没有到达 JSP。知道为什么吗?
提前致谢。
编辑:为了澄清porpuses。我试过了
<c:forEach var="i" begin="1" end="5">
Item <c:out value="${i}"/><p>
</c:forEach>
这行得通,但是
<c:forEach var="item" items="${data}">
It worked!<p>
</c:forEach>
不起作用。这就是让我相信可变数据由于某种原因没有到达 JSP 的原因。
编辑 2:为了运行它,我在 Eclipse 上配置了一个 Tomcat 服务器。我右键单击 servlet 并选择 Run As -> Run on Server。服务器重新启动,我http://localhost:8080/DataExtractor/
从浏览器启动。这是生成的html:
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Data extractor</title>
</head>
<body>
Data table:
<table border="1">
</table>
</body>
</html>
编辑3:这可能是发生这种情况的关键。当我转到(index.jsp) 时,我得到了在Edit 2http://localhost:8080/DataExtractor/
中发布的 html ,但如果我去,那么我确实得到了正确的页面!知道为什么吗?http://localhost:8080/DataExtractor/DataGetterServlet