我有一个servlet,我想用一个JSP文件从servlet打印一些数据,我必须使用必需的表达式语言。
我在servlet中有这个代码:
String saludo="hi";
req.setAttribute("exito",saludo);
我在JSP文件中有这个:
${exito}
我也试过这个:
${requestScope.exito}
但是当我尝试使用我的浏览器(谷歌浏览器)看到它时,我没有看到hi
,而是看到
${exito}
我做错了什么?
答案 0 :(得分:2)
当您向JSP发送信息时,您需要将当前请求发送到JSP,我尝试上面的代码,我没有任何问题,这是我的代码:
protected void doGet(HttpServletRequest req, HttpServletResponse resp)
throws ServletException, IOException {
String saludo="hi";
req.setAttribute("exito",saludo);
req.getRequestDispatcher("MyPage.jsp").forward(req, resp);
}
这是MyPage.jsp的代码
<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
pageEncoding="ISO-8859-1"%>
<!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>Title</title>
</head>
<body>
${exito}
</body>
</html>