0

を使用してjspからサーブレットを呼び出しています

//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}" />

これを取り除く方法を提案してください。

4

1 に答える 1

1

doGetJSP で応答をインポートしているため、サーブレットからこのステートメントを除外 (削除) します。

request.getRequestDispatcher("/PunchOutCanonicalError.jsp")
    .forward(request,response);

doGet は次のようにする必要があります。

@Override
public void doGet(HttpServletRequest request, 
                  HttpServletResponse response)
                    throws ServletException,IOException{
       String template="test";   
       abcViewBean punchOutCan = new abcViewBean();
       punchOutCan.setPunchOutCanonicalRes(template);
       //You can push the bean object into request via setAttribute
       //e.g
       //request.setAttribute("punchOutCan",punchOutCan);
}

そしてJSPコード、

<jsp:include page="/PunchOutCanonicalServlet" flush="true"/>  
<c:out value="${punchOutCan.punchOutCanonicalRes}" />
于 2012-08-20T06:30:54.043 に答える