java – 在servlet中包含jsp的内容

前端之家收集整理的这篇文章主要介绍了java – 在servlet中包含jsp的内容前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有这个servlet:
public class SaveImage extends HttpServlet {

    protected void doGet(HttpServletRequest request,HttpServletResponse response) throws ServletException,IOException {
        PrintWriter out = null;
        try {
            out = response.getWriter();
            out.println("<html>");
            ...

            // I want to include here the content of this jsp:
            // /WEB-INF/myBox.jsp
            // (also,with the full context of the servlet)

            ...
            out.println("</html>");
            out.close();
        } catch (IOException e) {
            e.printStackTrace();
        }
    }
}

这样做是否有问题(响应已经提交?),我该怎么做?

解决方法

request.getRequestDispatcher("/WEB-INF/my.jsp").include(request,response);

但你不应该像这样输出html的servlet.只需使用jsp,其中包含< jsp:include />或<%@ include file =“..”%>

原文链接:https://www.f2er.com/java/126610.html

猜你在找的Java相关文章