サーブレットからJSPページを呼び出す方法を教えてもらえますか(呼び出すだけで、パラメータを渡す必要はありません)。
質問する
87 次
2 に答える
2
( Docu )のforward()
orinclude()
メソッドを使用します。RequestDispatcher
getServletContext().getRequestDispatcher( "yourJspPath" )
.forward(request, response);
于 2012-06-14T15:36:55.493 に答える
1
Not sure what 'invoke' is supposed to mean, but if we're talking about redirecting, it could be done like that:
response.sendRedirect("your.jsp");
于 2012-06-14T15:37:40.957 に答える