<!-- 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. -->
3条答案
按热度按时间fzsnzjdm1#
文件web.xml也称为部署描述符,并且不是特定于Tomcat的。如果您想找到一些关于部署描述符的文档,请参阅Java Servlet Specification第13章以及附录A和附录B。(这是版本2.4,也许你更愿意搜索最新的版本,我想是3.1)
现在,如果您正在 * Catalina _HOME*/conf中寻找有关文件web.xml的文档,该文件本身已经有了很好的内部注解,顺便说一句,第一条注解说:
字符串
qfe3c7zg2#
也许你会发现这个reference guide是有用的
lskq00tm3#
如果您在conf/web.xml中指的是web.xml,则这是默认应用程序的部署描述符。
http://tomcat.apache.org/tomcat-7.0-doc/default-servlet.html
对于一般的web.xml规范,您必须查看任何JEE教程。