我正在使用从 jsp 调用 servlet
//My servlet code is:
public void doGet(HttpServletRequest request, HttpServletResponse response)
{
String template="test";
abcViewBean punchOutCan = new abcViewBean();
punchOutCan.setPunchOutCanonicalRes(template);
try {
request.getRequestDispatcher("/PunchOutCanonicalError.jsp").forward(request,response);
} catch (ServletException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
我的 JSP 代码是:
<jsp:include page="/PunchOutCanonicalServlet" flush="true"/>
<c:out value="${punchOutCan.punchOutCanonicalRes}" />
请建议,如何摆脱这个。