变量不显示Java Servlet

时间:2017-03-17 14:20:01

标签: java jsp servlets

我尝试制作一个简单的Java Servlet应用程序,它显示日期和时间。 问题是:当我加载页面时它不会显示(页面本身确实显示)。我调试了它,日期和时间确实显示在控制台中。

TestServlet.java(不是整个文件):

protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {

    DateFormat format = new SimpleDateFormat("yyyy/MM/dd HH:mm:ss");
    Date timeDate = new Date();
    @SuppressWarnings("unused")
    String time = format.format(timeDate);


    request.getRequestDispatcher("/WEB-INF/test.jsp").forward(request, response);

}

test.jsp(整个文件):

<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<!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=UTF-8">
        <title>Insert title here</title>
    </head>
    <body>
        <h1>Welcome! It is ${time}!</h1>
    </body>
</html>

欢迎所有帮助;)

1 个答案:

答案 0 :(得分:-1)

搞定了!我看过一个视频,他们就像我在问题中那样做了。现在我查看了AxelH给我的链接(我之前看过的地方,但认为它没有回答我的问题)并找到了答案!

对于那些也遇到问题的人: 我必须在请求中将其设置为属性,如下所示:

a[[True, True, False, False],:][:, [1,2]]

然后我可以在jsp文件中使用它;)