web.xml中的配置

整理一下web.xml中的一些配置

首先要了解wel.xml包含了哪裏東西,簡單的項目來說 就是spring的配置,springMvc(servlet)的一些配置,現在很多的項目都是ssm開發,所以servlet一般都是springMvc框架,然後就是一些listener監聽器,攔截器filter,

還有一些其他的包括歡迎頁面,session時間,error-page頁面等

 

首先我們先要知道web.xml裏面的一些加載順序

 

 1、啓動一個WEB項目的時候,WEB容器會去讀取它的配置文件web.xml,讀取<listener>和<context-param>兩個結點。 

2、緊急着,容創建一個ServletContext(servlet上下文),這個web項目的所有部分都將共享這個上下文。 

3、容器將<context-param>轉換爲鍵值對,並交給servletContext。 

4、容器創建<listener>中的類實例,創建監聽器。

 

加載順序與它們在 web.xml 文件中的先後順序無關。即不會因爲 filter 寫在 listener 的前面而會先加載 filter。最終得出的結論是:ServletContext -> listener -> filter -> servlet

 

首先要講一下load-on-startup這個標籤

 

Load-on-startup 元素在web應用啓動的時候指定了servlet被加載的順序,它的值必須是一個整數。如果它的值是一個負整數或是這個元素不存在,那麼容器會在該servlet被調用的時候,加載這個servlet 。如果值是正整數或零,容器在配置的時候就加載並初始化這個servlet,容器必須保證值小的先被加載。如果值相等,容器可以自動選擇先加載誰。

 

Java代碼 
  1. <listener>  
  2.     <listener-class>  
  3.       org.springframework.web.context.ContextLoaderListener  
  4.     </listener-class>  
  5.   </listener>  
  6.   
  7.   <!-- 指定Spring Bean的配置文件所在目錄。默認配置在WEB-INF目錄下 -->  
  8.   <context-param>  
  9.     <param-name>contextConfigLocation</param-name>  
  10.     <param-value>classpath:spring/applicationContext.xml</param-value>  
  11.   </context-param>  
<listener>
    <listener-class>
      org.springframework.web.context.ContextLoaderListener
    </listener-class>
  </listener>

  <!-- 指定Spring Bean的配置文件所在目錄。默認配置在WEB-INF目錄下 -->
  <context-param>
    <param-name>contextConfigLocation</param-name>
    <param-value>classpath:spring/applicationContext.xml</param-value>
  </context-param>

 看上面代碼就知道了跟標籤的順序是沒有關聯的

這裏我們將sping放到listener標籤中,讓它更優先加載,因爲spring其實是最後加載的是排在在servlet之後的,如果那樣的話,有一些filter 是需要調用配置一些bean的,這樣的話那些bean就會bean實體就變成null了

 

接下來就是日誌

Java代碼 
  1. <listener>  
  2.   <listener-class>  
  3.     org.springframework.web.util.Log4jConfigListener  
  4.   </listener-class>  
  5. </listener>  
  6. <context-param>  
  7.   <param-name>log4jConfigLocation</param-name>  
  8.   <param-value>classpath:log4j.properties</param-value>  
  9. </context-param>  
  <listener>
    <listener-class>
      org.springframework.web.util.Log4jConfigListener
    </listener-class>
  </listener>
  <context-param>
    <param-name>log4jConfigLocation</param-name>
    <param-value>classpath:log4j.properties</param-value>
  </context-param>

 

filter過濾器是一個重點

因爲在平時的項目中亂碼一直都是經常存在並且讓很多人很頭疼的一些問題

現在的這個編碼filter就可以解決post提交的一些亂碼

Java代碼 
  1. <filter>  
  2.   <filter-name>CharacterEncodingFilter</filter-name>  
  3.   <filter-class>org.springframework.web.filter.CharacterEncodingFilter</filter-class>  
  4.   <init-param>  
  5.     <param-name>eccoding</param-name>  
  6.     <param-value>utf-8</param-value>  
  7.   </init-param>  
  8.   <init-param>  
  9.     <param-name>forceEncoding</param-name>  
  10.     <param-value>true</param-value>  
  11.   </init-param>  
  12. </filter>  
  13.     
  14.   <filter-mapping>  
  15.     <filter-name>CharacterEncodingFilter</filter-name>  
  16.     <url-pattern>/*</url-pattern>  
  17.   </filter-mapping>  
<filter>
  <filter-name>CharacterEncodingFilter</filter-name>
  <filter-class>org.springframework.web.filter.CharacterEncodingFilter</filter-class>
  <init-param>
    <param-name>eccoding</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>CharacterEncodingFilter</filter-name>
    <url-pattern>/*</url-pattern>
  </filter-mapping>

 

在springMvc請求的時候,有時候我們會用到ResquestMethod=PUT或者是DELETE等方法,但瀏覽器一些只識別get,post請求,所以我們配置一個filter就ok

Java代碼  
  1. <filter>    
  2.     <filter-name>HiddenHttpMethodFilter</filter-name>    
  3.     <filter-class>org.springframework.web.filter.HiddenHttpMethodFilter</filter-class>    
  4. </filter>    
  5.     
  6. <filter-mapping>    
  7.     <filter-name>HiddenHttpMethodFilter</filter-name>    
  8.     <url-pattern>/</url-pattern>    
  9. </filter-mapping>  
<filter>  
    <filter-name>HiddenHttpMethodFilter</filter-name>  
    <filter-class>org.springframework.web.filter.HiddenHttpMethodFilter</filter-class>  
</filter>  
  
<filter-mapping>  
    <filter-name>HiddenHttpMethodFilter</filter-name>  
    <url-pattern>/</url-pattern>  
</filter-mapping>

 

springMvc servlet的配置

Java代碼  
  1. <servlet>  
  2.    <servlet-name>springmvc</servlet-name>  
  3.    <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>  
  4.    <init-param>  
  5.      <param-name>contextConfigLocation</param-name>  
  6.      <param-value>classpath:springmvc/springmvc.xml</param-value>  
  7.    </init-param>  
  8.    <!-- 可以自定義servlet.xml配置文件的位置和名稱,默認爲WEB-INF目錄下,名稱爲[<servlet-name>]-servlet.xml,如spring-servlet.xml  
  9.    <init-param>  
  10.        <param-name>contextConfigLocation</param-name>  
  11.        <param-value>/WEB-INF/spring-servlet.xml</param-value>&nbsp; 默認  
  12.    </init-param>  
  13.    -->  
  14.    <load-on-startup>1</load-on-startup>  
  15.  </servlet>  
 <servlet>
    <servlet-name>springmvc</servlet-name>
    <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
    <init-param>
      <param-name>contextConfigLocation</param-name>
      <param-value>classpath:springmvc/springmvc.xml</param-value>
    </init-param>
    <!-- 可以自定義servlet.xml配置文件的位置和名稱,默認爲WEB-INF目錄下,名稱爲[<servlet-name>]-servlet.xml,如spring-servlet.xml
    <init-param>
        <param-name>contextConfigLocation</param-name>
        <param-value>/WEB-INF/spring-servlet.xml</param-value>&nbsp; 默認
    </init-param>
    -->
    <load-on-startup>1</load-on-startup>
  </servlet>

 

Java代碼 
  1. <servlet-mapping>  
  2.    <servlet-name>springmvc</servlet-name>  
  3.    <url-pattern>/</url-pattern>  
  4.  </servlet-mapping>  
 <servlet-mapping>
    <servlet-name>springmvc</servlet-name>
    <url-pattern>/</url-pattern>
  </servlet-mapping>

 

最後加載servlet

 

最後就是一些Session 跟一些歡迎,或者跳轉的頁面

Java代碼 
  1. <welcome-file-list>  
  2.   <welcome-file>index.jsp</welcome-file>  
  3. </welcome-file-list>  
  4.   
  5. <session-config>  
  6.   <session-timeout>30</session-timeout>  
  7. </session-config>  
  <welcome-file-list>
    <welcome-file>index.jsp</welcome-file>
  </welcome-file-list>

  <session-config>
    <session-timeout>30</session-timeout>
  </session-config>

 錯誤頁面

 <error-page>
2      <error-code>404</error-code>
3      <location>/error404.jsp</location>
4  </error-page>
5  <error-page>
6      <exception-type>java.lang.Exception</exception-type>
7      <location>/exception.jsp</location>
8  </error-page>

 

 

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章