0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

サーブレットのURLパターン

Posted at

サーブレット

サーブレットとはWebサーバーがWebブラウザからリクエストを受けた際にAPサーバー内にあるlogicプログラムを呼び出し結果を受けとりJSPを指定してWebブラウザに結果を返却するものである。

サーブレットは自分自身のプログラム内に自分自身のURLパターンを指定することが出来る。
方法としてはアノテーションを用いて

serv.java
@WebSerblet(urlPatterns={"/testserv"})

このように記述することで
http://サーバー名:ポート番号/rootディレクトリ/サーブレットが指定した名前
でアクセスすることが可能になる。
指定しない場合はサーブレットのファイル名がサーブレットのurlになるがセキュリティ上少し変更を加えることが推奨されている。

0
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
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?