Oracle BEA WebLogic Server 8.1文档中的web.xml部署描述符元素几乎总结了web.xml文件中的每个元素。但我也对以下几点感到好奇:
- 有没有像瘟疫这样应该避免的配置参数?
- 是否有任何与性能或内存使用情况相关的参数?
- 常见错误配置会导致与安全相关的风险?
除了元素名称及其用法之外,我还应该对web.xml了解什么?
Oracle BEA WebLogic Server 8.1文档中的web.xml部署描述符元素几乎总结了web.xml文件中的每个元素。但我也对以下几点感到好奇:
除了元素名称及其用法之外,我还应该对web.xml了解什么?
Answers:
什么是web.xml文件,我可以用它做什么?
该/WEB-INF/web.xml
文件是您的应用程序的Web应用程序部署描述符。该文件是一个XML文档,用于定义服务器需要了解的有关应用程序的所有信息(上下文路径除外,该上下文路径由应用程序部署者和管理员在部署应用程序时分配):Servlet和其他组件,例如过滤器或侦听器,初始化参数,容器管理的安全性约束,资源,欢迎页面等。
请注意,您提到的参考文献已经很旧了(Java EE 1.4),Java EE 5中的更改很少,而Java EE 6中的更改甚至更多(这成为web.xml
“可选”并引入了Web Fragments)。
有没有像瘟疫这样应该避免的配置参数?
没有。
是否有任何与性能或内存使用情况相关的参数?
不,这些事情不是在应用程序级别配置的,而是在容器级别配置的。
常见错误配置导致与安全相关的风险?
好吧,如果您想使用容器管理的安全性约束而未能正确配置它们,显然资源将不会得到适当的保护。除此之外,最大的安全风险来自您将部署IMO的代码。
除了元素名称及其用法之外,关于web.xml我应该了解什么?
ALL TIME的单个最重要的JSP配置参数在您的web.xml中。女士们,先生们,我给你... TRIM-DIRECTIVE-WHITESPACES选项!
<jsp-config>
<jsp-property-group>
<url-pattern>*.jsp</url-pattern>
<trim-directive-whitespaces>true</trim-directive-whitespaces>
</jsp-property-group>
</jsp-config>
如果您使用任何标记库,则将删除在生成的HTML中获得的成百上千行空白,(循环特别难看且浪费)。
另一个重要的是默认网页(当您未在URL中输入网页时自动发送到的页面):
<welcome-file-list>
<welcome-file>index.jsp</welcome-file>
</welcome-file-list>
我正试图弄清楚这也是如何工作的。这个网站可能对您有帮助。它具有web.xml的所有可能标记以及每个标记的示例和说明。
http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd“ version =” 3.0“>
<servlet>
<servlet-name>mvc-dispatcher</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>mvc-dispatcher</servlet-name>
<url-pattern>/</url-pattern>
</servlet-mapping>
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>/WEB-INF/mvc-dispatcher-servlet.xml</param-value>
</context-param>
<listener>
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>
<welcome-file-list>
<welcome-file>index.jsp</welcome-file>
</welcome-file-list>
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:web="http://java.sun.com/xml/ns/javaee" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd" version="3.0">
<servlet>
<servlet-name>mvc-dispatcher</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet>
<description></description>
<display-name>pdfServlet</display-name>
<servlet-name>pdfServlet</servlet-name>
<servlet-class>com.sapta.smartcam.servlet.pdfServlet</servlet-class>
</servlet>
<servlet-mapping>
<servlet-name>mvc-dispatcher</servlet-name>
<url-pattern>/</url-pattern>
</servlet-mapping>
<servlet-mapping>
<servlet-name>pdfServlet</servlet-name>
<url-pattern>/pdfServlet</url-pattern>
</servlet-mapping>
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>/WEB-INF/mvc-dispatcher-servlet.xml</param-value>
</context-param>
<listener>
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>
<welcome-file-list>
<welcome-file>index.jsp</welcome-file>
</welcome-file-list>
</web-app>