美文网首页
web.xml配置

web.xml配置

作者: 浅晨夕 | 来源:发表于2016-07-14 03:00 被阅读80次

    名称:web.xml
    目录:/webapp/WEB-INF/web.xml
    内容:过滤器、Servlet


    <!DOCTYPE web-app PUBLIC
     "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN"
     "http://java.sun.com/dtd/web-app_2_3.dtd" >
    
    <web-app>
      <display-name>Archetype Created Web Application</display-name>
      
      <!-- 定位applicatioinContext.xml路径 -->
      <context-param>
        <param-name>contextConfigLocation</param-name>
        <param-value>classpath:applicationContext.xml</param-value>
      </context-param>
     
      <filter>
          <filter-name>springEncoding</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>
        <filter-name>openSessionInView</filter-name>
        <filter-class>org.springframework.orm.hibernate3.support.OpenSessionInViewFilter</filter-class>
        <init-param>
            <param-name>sessionFactoryBeanName</param-name>
            <param-value>sessionFactory</param-value>
        </init-param>
      </filter>
      
      <filter>
          <filter-name>sessionFilter</filter-name>
          <filter-class>com.troyforever.example.filter.SessionFilter</filter-class>
      </filter>
      
      <filter-mapping>
          <filter-name>springEncoding</filter-name>
          <url-pattern>/*</url-pattern>
      </filter-mapping>
      
      <filter-mapping>
        <filter-name>openSessionInView</filter-name>
        <url-pattern>/*</url-pattern>
      </filter-mapping>
      
        <filter-mapping>
          <filter-name>sessionFilter</filter-name>
          <url-pattern>/admin/*</url-pattern>
      </filter-mapping>  
    
      <!-- 加载applicationContext.xml配置文件 -->
        <listener>
         <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
        </listener>
    
       <servlet>
        <servlet-name>example</servlet-name>
        <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
        <load-on-startup>1</load-on-startup>
      </servlet>
      
      
      <servlet-mapping>
        <servlet-name>example</servlet-name>
        <url-pattern>/</url-pattern>
      </servlet-mapping>
      
    
    </web-app>
    
    

    相关文章

      网友评论

          本文标题:web.xml配置

          本文链接:https://www.haomeiwen.com/subject/wndejttx.html