在web.xml中配置diaplay-name是什么意思

一般在配置Servlet时候,
描述信息
显示名称
Servlet的名称
Servlet所引用的类名
例如:


<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="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">
  <display-name>Java1display-name>
  <servlet>
    <description>JAX-RS Tools Generated - Do not modifydescription>
    <servlet-name>JAX-RS Servletservlet-name>
    <servlet-class>com.sun.jersey.spi.container.servlet.ServletContainerservlet-class>
    <load-on-startup>1load-on-startup>
  servlet>
  <servlet-mapping>
    <servlet-name>JAX-RS Servletservlet-name>
    <url-pattern>/jaxrs/*url-pattern>
  servlet-mapping>
web-app>

你可能感兴趣的:(java-web)