LoginSignup
1
0

More than 5 years have passed since last update.

request.getRequestDispatcherのパスの注意点

Posted at

修飾名が以下の場合でも

/dev/WebContent/jsp/result.jsp

画面遷移の際のパスは

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

上記記述ではなく

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

WebContentを省いた記述をする。
WebContentがあると404エラーとなる。

1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0