2013-12-10 74 views
1

我有一個servlet,並且我想用JSP文件打印servlet中的一些數據,並且必須使用表達式語言。使用JSP和表達式語言(EL)打印值

我有這樣的代碼在servlet:

String saludo="hi"; 
req.setAttribute("exito",saludo); 

而且我有這個在我的JSP文件:

${exito} 

而且我也試圖與此:

${requestScope.exito} 

但當我試着用我的瀏覽器(谷歌瀏覽器)看到它,而不是看到hi,我看到

${exito} 

我在做什麼錯?

+1

[在JSP不工作表達式語言(http://stackoverflow.com/questions/2168832/expression-language-in-jsp-not-working) –

+0

的重複嘗試使用JSTL include <%@ taglib prefix =「c」uri =「http://java.sun.com/jsp/jstl/core」%>然後嘗試 user1769790

回答

2

當你發送信息到JSP,你需要dispacth當前請求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> 
+1

非常感謝。我的問題是調度員,我有另一種方式,我試過你的代碼,它工作正常。再次感謝 –