我这样转发:
request.setAttribute("message", "My message is written here.");
...
getServletContext().getRequestDispatcher("/Folder1/Folder2/message.jsp")
.forward(request, response);
在jsp中,我使用以下代码获取数据:
<h3>${message}</h3>
此代码在我的localhost中有效,但在服务器中,结果为&#34; $ {message}&#34;。怎么解决?