Tomcat web.xml文档

zbdgwd5y  于 2023-08-06  发布在  其他
关注(0)|答案(3)|浏览(137)

我在将Java应用程序部署到Tomcat时遇到了一些问题,我想看看web.xml的文档在哪里。我好像找不到了。
我使用的是标准的web.xml,但我想知道所有特定的xml标签是什么意思。
当然,通常使用标准的web.xml只是工作,但我真的很想看到一些文档。
我看过Tomcat 7文档站点,但似乎找不到它。

fzsnzjdm

fzsnzjdm1#

文件web.xml也称为部署描述符,并且不是特定于Tomcat的。如果您想找到一些关于部署描述符的文档,请参阅Java Servlet Specification第13章以及附录A和附录B。(这是版本2.4,也许你更愿意搜索最新的版本,我想是3.1)
现在,如果您正在 * Catalina _HOME*/conf中寻找有关文件web.xml的文档,该文件本身已经有了很好的内部注解,顺便说一句,第一条注解说:

<!-- This document defines default values for *all* web applications      -->
  <!-- loaded into this instance of Tomcat.  As each application is         -->
  <!-- deployed, this file is processed, followed by the                    -->
  <!-- "/WEB-INF/web.xml" deployment descriptor from your own               -->
  <!-- applications.                                                        -->
  <!--                                                                      -->
  <!-- WARNING:  Do not configure application-specific resources here!      -->
  <!-- They should go in the "/WEB-INF/web.xml" file in your application.   -->

字符串

qfe3c7zg

qfe3c7zg2#

也许你会发现这个reference guide是有用的

lskq00tm

lskq00tm3#

如果您在conf/web.xml中指的是web.xml,则这是默认应用程序的部署描述符。
http://tomcat.apache.org/tomcat-7.0-doc/default-servlet.html
对于一般的web.xml规范,您必须查看任何JEE教程。

相关问题