6
1

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 5 years have passed since last update.

javax.servlet.annotation.WebServletがインポートできません。の原因と解決

Posted at

#問題
javax.servlet.annotation.WebServletがインポートできません

##原因
javax.servlet.annotation.WebServletクラスがない
(こいつはServlet3.0から追加された)

##解決
Servlet3.0に切り替えてやる

##方法
プロジェクトを右クリック➡『プロパティ』➡『プロジェクト・ファッセット』➡動的モジュールのバージョンを3.0に変更。完了。


#例外
動的モジュールに3.0がない。(選択欄がない)

##原因
Servlet3.0バージョンに対応していないTomcatを使用している。
(3.0に対応しているのはTomocat7以上)

##解決
Tomcat7以上を使用する

##方法
プロジェクトを右クリック➡『プロパティ』➡『ターゲット・ランタイム』➡Tomcat7以上を選択。

6
1
2

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
6
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?