在servlet中包含jsp的内容

Ben*_*ris 7 java jsp servlets include

我有这个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();
        }
    }
}
Run Code Online (Sandbox Code Playgroud)

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

Boz*_*zho 13

request.getRequestDispatcher("/WEB-INF/my.jsp").include(request, response);
Run Code Online (Sandbox Code Playgroud)

但你不应该像这样输出html的servlet.只需使用jsp,或者使用<jsp:include />或者<%@ include file=".." %>