Web.xml配置说明

Web.xml配置说明1. web.xml配置详解:     <web-app> <!–指定WEB应用的名字–> <display-name>MyWeb</display-name> <!–WEB应用描述信息–> <description>MyWeb demo</description&gt

大家好,又见面了,我是你们的朋友全栈君。

1. web.xml配置详解:

     

<web-app>
    <!--指定WEB应用的名字-->
    <display-name>MyWeb</display-name>

    <!--WEB应用描述信息-->
    <description>MyWeb demo</description>


    <!--web的初始化参数,通过ServletContextEvent.getServletContext().getInitParameter("field")获得value的值(ServletContextEvent通过listener获得)-->
    <context-param>
        <param-name>contextConfigLocation</para-name>
        <param-value>classpath:applicationContext.xml</param-value>
        <description>web的ApplicationContext上下问文件配置</description>
    </context-param>

    <!--filter 和filter-mapping 必须是成对出现-->

    <!--拦截/*的路径,执行CharacterEncodingFilter的父类的OncePerRequestFilter的doFilter(doFilter中调用doFilterInternal方法,设置request和response的编码方式设置为UTF-8)-->
    <filter>
        <filter-name>utf8-encoding</filter-name>
        <filter-class>org.springframework.web.filter.CharacterEncodingFilter</filter-class>
        <init-param>
            <param-name>encoding</param-name>
            <param-value>utf-8</param-value>
        </init-param>
        <init-param>
            <param-name>forceEncoding</param-name>
            <param-value>true</param-value>
        </init-param>
    </filter>
    <filter-mapping>
        <filter-name>utf8-encoding</filter-name>
        <url-pattern>/*</url-pattern>
    </filter-mapping>


    <!--servlet 监听配置,项目启动时执行contextInitialized(ServletContextEvent servletContextEvent)方法,项目停止时执行contextDestroyed(ServletContextEvent event)-->
    <listener>
        <listerner-class>org.springframework.web.context.ContextLoaderListener</listener-class>
    </listener>


    <!--servlet和servlet-mapping是成对出现的,服务启动时,执行HttpServlet.init(ServletConfig config)方法,当用户请求/myservlet/*路径时,执行HttpServlet.service(HttpServletRequest req, HttpServletResponse resp)方法-->
    <servlet>
        <servlet-name>myservlet</servlet-name>
        <servlet-class>javax.servlet.http.HttpServlet</servlet-class>
        <init-param>
            <param-name>paramField</param-name>
            <param-value>paramValue</param-value>
        </init-param>
    </servlet>

    <servlet-mapping>
        <servlet-name>myservlet</servlet-name>
        <url-pattern>/myservlet/*</url-pattern>
    </servlet-mapping>

    <!--会话超时时间设置,单位是分钟-->
    <session-config>
        <session-timeout>10</session-timeout>
    </session-config>

    <!--mime-mapping元素将mime类型映射到扩展名, 用于规定下载格式-->
    <mime-mapping>
        <extension>htm</extension>
        <mime-type>text/html</mime-type>
    </mime-mapping>

    <mime-mapping>
        <extension>pdf</extension>
        <mime-type>application/pdf</mime-type>
    </mime-mapping>
    <mime-mapping>
        <extension>doc</extension>
        <mime-type>application/msword</mime-type>
    </mime-mapping>
    <mime-mapping>
        <extension>xls</extension>
        <mime-type>application/msexcel</mime-type>
    </mime-mapping>


    <!--指定Web项目的欢迎页面-->
    <welcome-file-list>
        <welcome-file>index.jsp</welcome-file>
        <welcome-file>index.html</welcome-file>
    </welcome-file-list>

    <!--当请求发生404错误时,跳转到404error.jsp页面-->
    <error-page>
        <error-code>404</error-code>
        <location>/404error.jsp</location>
    </error-page>

    <!--当Web服务发生java.lang.NullException异常时,跳转到nullerror.jsp页面-->
    <error-page>
        <exception-type>java.lang.NullException</exception-type>
        <location>/nullerror.jsp</location>
    </error-page>

    <!--对tag库文件名称。前端JSP可以通过<%@ taglib uri="http://jakarta.apache.org/tomcat/debug-taglib" prefix="myTag"%>配置使用tag库-->
    <taglib>
        <taglib-uri>http://jakarta.apache.org/tomcat/debug-taglib</taglib-uri>
        <taglib-location>/WEB-INF/tld/taglib.tld</taglib-location>
    </taglib>

    <!--配置资源相关的管理对象,可通过new InitialContext().lookup()获得值-->
    <resource-env-ref>
        <resource-env-ref-name>jms/StockQueue</resource-env-ref-name>
    </resource-env-ref>

    <!--设置factory的外部资源-->
    <resource-ref>
        <description>java JDBC DataSource factory</description>
        <res-ref-name>jdbc/java_db</res-ref-name>
        <res-type>javax.sql.DataSource</res-type>
        <res-auth>dataManager</res-auth>
    </resource-ref>

    <security-constraint></security-constraint>
    <login-config></login-config>
    <security-role></security-role>
    <env-entry></env-entry>
</web-app>

 

 

 

 

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。

发布者:全栈程序员-用户IM,转载请注明出处:https://javaforall.cn/149544.html原文链接:https://javaforall.cn

【正版授权,激活自己账号】: Jetbrains全家桶Ide使用,1年售后保障,每天仅需1毛

【官方授权 正版激活】: 官方授权 正版激活 支持Jetbrains家族下所有IDE 使用个人JB账号...

(0)


相关推荐

  • 国内数据集网站_数据网站

    国内数据集网站_数据网站如果你是一个初学者,你每完成一个新项目后自身能力都会有极大的提高,如果你是一个有经验的数据科学专家,你已经知道这里所蕴含的价值。 本文将为您提供一个网站/资源列表,从中你可以使用数据来完成你自己的数据项目,甚至创造你自己的产品。一.如何使用这些资源?如何使用这些数据源是没有限制的,应用和使用只受到您的创造力和实际应用。使用它们最简单的方法是进行数据项目并在网站上发布它们。这不仅能提高你的数…

    2022年10月16日
  • map的containsKey方法

    map的containsKey方法map是一个key和value的键值对集合。map中的containKey(key)方法是判断该key在map中是否有key存在。如果存在则返回true,反之,返回false。程序实例:判断数组中是否有1,有的话就返回1和1所在的位置。我采用的是hashmap,在哈希表中进行添加,删除,查找等操作,性能十分之高,不考虑哈希冲突的情况下,仅需一次定位即可完成,时间复杂度为O(1),时间消耗是很少的。packageTT04;importjava.util.Has…

  • cs架构和bs架构的区别举例子_bs和cs架构哪个安全

    cs架构和bs架构的区别举例子_bs和cs架构哪个安全最近发现自己基础非常薄弱,问起CS/BS的概念和区别竟然只知道个皮毛。赶快找了个文章仔细学习。C/S结构 即Client/Server(客户机/服务器)结构,是大家熟知的软件系统体系结构,通过将任务合理分配到Client端和Server端,降低了系统的通讯开销,可以充分利用两端硬件环境的优势。早期的软件系统多以此作为首选设计标准。B/S结构 即Browser/Server(浏览器/服务…

  • 双机热备解决方案(mysql双机热备方案)

    数据库双机热备有两种典型的方式,一种是比较标准的,两台服务器通过一个共享的存储设备(一般是共享的磁盘阵列或存储区域网SAN),并且安装双机软件,实现双机热备,称为共享方式。另一种方式是通过纯软件的方式,一般称为镜像的方式…

  • mysql—mysql中如何存储日期数据

    mysql—mysql中如何存储日期数据

    2020年11月12日
  • MySQL字符串截取_mysql删除字符串后的字符

    MySQL字符串截取_mysql删除字符串后的字符先给你们看看表数据is_type:0不推荐|1首页广告推荐 | 2 商品页广告推荐 | 3 列表页广告推荐 4:购物车广告推荐sort_num:0,0,0,0  第一个对呀1   |    第二个对应2   |  第三个对应3 | 第四个对呀4id   name     is_type     sort_num     is_show

发表回复

您的电子邮箱地址不会被公开。

关注全栈程序员社区公众号