tomcatのweb.xmlについて
tomcatのweb.xmlについての質問です。
eclipseにサーバーからソースをインポートしてプロジェクトを作成しました。
ビルドパス等の問題は解決したのですが、web.xmlの以下に示す箇所だけどうしてもエラーが解消出来ません。
色々調べてみた結果、要素の順番が悪いのだろうとは理解出来ましたが、順番を変えてもエラーが出続けます。
どこがいけないのでしょうか?
web.xmlの記述
<servlet>
<init-param>
<param-name>browseDirs</param-name>
<param-value>false</param-value></init-param>
<servlet-name>FileServlet</servlet-name>
<servlet-class>jrun.servlet.file.FileServlet</servlet-class>
<description>This servlet may override a corresponding FileServlet in SERVER-INF/default-web.xml.If removed, the servlet in default-web.xml will be used.</description>
</servlet>
エラー内容
要素タイプ "servlet" のコンテンツは "(icon?,servlet-name,display-name?,description?,(servlet-class|jsp-file),init-param*,load-on-startup?,run-as?,security-role-ref*)" と一致しなければなりません。
お詳しい方、何卒ご教示の程願います。
お礼
ありがとうございました。 web.xmlを開くと何やらごちゃごちゃと書かれているのですが、それぞれの意味ついてどういう意味なのですか?その意味ついて書かれているサイトがないです。