Spring mvc項目的web.xml以及注釋


web.xml

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <web-app id="WebApp_ID" version="3.0"
  3.    xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4.    xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd">
  5.  
  6.  
  7.    <context-param>
  8.       <param-name>log4jConfigLocation</param-name>
  9.       <param-value>classpath:config/properties/log4j.properties</param-value>
  10.    </context-param>
  11.  
  12.    <listener>
  13.       <listener-class>org.springframework.web.util.Log4jConfigListener</listener-class>
  14.    </listener>
  15.  
  16. <!-- context-param中配置的contextConfigLocation只對ContextLoaderListener有效 不會對DispatcherServlet有效 -->
  17. <!-- DispatcherServlet用來加載mvc相關的bean ContextLoaderListener用來加載其他bean -->
  18. <!-- ContextLoaderListener會生成一個spring的context 注:DispatcherServlet不會識別@controller注解-->
  19.    <context-param>
  20.       <param-name>contextConfigLocation</param-name>
  21.       <param-value>/WEB-INF/config/spring-bean/*.xml</param-value>
  22.    </context-param>
  23.  
  24.    <listener>
  25.       <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
  26.    </listener>
  27.  
  28.  
  29. <!-- 配置DispatcherServlet load-on-startup要為1 它會根據contextConfigLocation生成一個spring的context-->
  30.    <servlet>
  31.       <servlet-name>spring</servlet-name>
  32.       <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
  33.       <init-param>
  34.          <param-name>contextConfigLocation</param-name>
  35.          <param-value>/WEB-INF/config/spring-servlet.xml</param-value>
  36.       </init-param>
  37.       <load-on-startup>1</load-on-startup>
  38.    </servlet>
  39.  
  40.    <servlet-mapping>
  41.       <servlet-name>spring</servlet-name>
  42.       <url-pattern>/</url-pattern>
  43.    </servlet-mapping>
  44.  
  45.  
  46.  
  47.  <filter>
  48.         <filter-name>encodingFilter</filter-name>
  49.         <filter-class>org.springframework.web.filter.CharacterEncodingFilter</filter-class>
  50.         <init-param>
  51.             <param-name>encoding</param-name>
  52.             <param-value>UTF-8</param-value>
  53.         </init-param>
  54.         <init-param>
  55.             <param-name>forceEncoding</param-name>
  56.             <param-value>true</param-value>
  57.         </init-param>
  58.     </filter>
  59.     <filter-mapping>
  60.         <filter-name>encodingFilter</filter-name>
  61.         <url-pattern>/*</url-pattern>
  62.     </filter-mapping>
  63.  
  64. </web-app>

 

ContextLoaderListener中加載的context成功后,spring 將 applicationContext存放在ServletContext中key值為"org.springframework.web.context.WebApplicationContext.ROOT"的attribute中。

servletContext.setAttribute(WebApplicationContext.ROOT_WEB_APPLICATION_CONTEXT_ATTRIBUTE, this.context);

可以通過WebApplicationContextUtils.getRequiredWebApplicationContext(servletContext)或WebApplicationContextUtils.getWebApplicationContext(servletContext)方法來獲取對應的applicationContext。

 

DispatcherServlet加載的context成功后,如果 publishContext屬性的值設置為true的話(缺省為true) 會將applicationContext存放在org.springframework.web.servlet.FrameworkServlet.CONTEXT. + (servletName)的attribute中。

在每次request請求時,DispatcherServlet會將此applicationContext存放在request中,

可以通過 RequestContextUtils.getWebApplicationContext 或 WebApplicationContextUtils.getWebApplicationContext(servletContext,attrname)方法 來獲取對應的applicationContext。

 

 

在配置的過程中盡量讓DispatcherServlet和ContextLoaderListener職責分離,避免一個bean被加載兩次。

或者只使用DispatcherServlet(沒有試過 應該可行)。

 

從web.xml的配置可知ContextLoaderListener會先於DispatcherServlet創建ApplicationContext,DispatcherServlet在創建ApplicationContext時會先找到由ContextLoaderListener所創建的ApplicationContext,再將后者的ApplicationContext作為參數傳給DispatcherServlet的ApplicationContext的setParent()方法。

當Spring在執行ApplicationContext的getBean時,如果在自己context中找不到對應的bean,則會在父ApplicationContext中去找。這也解釋了為什么我們可以在DispatcherServlet中獲取到由ContextLoaderListener對應的ApplicationContext中的bean。

spring-servlet.xml:

 

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <beans xmlns="http://www.springframework.org/schema/beans"
  3.     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:context="http://www.springframework.org/schema/context"
  4.     xmlns:tx="http://www.springframework.org/schema/tx" xmlns:mvc="http://www.springframework.org/schema/mvc"
  5.     xsi:schemaLocation="http://www.springframework.org/schema/beans
  6.        http://www.springframework.org/schema/beans/spring-beans.xsd
  7.        http://www.springframework.org/schema/context
  8.        http://www.springframework.org/schema/context/spring-context.xsd
  9.        http://www.springframework.org/schema/tx
  10.        http://www.springframework.org/schema/tx/spring-tx.xsd
  11.           http://www.springframework.org/schema/mvc
  12.        http://www.springframework.org/schema/mvc/spring-mvc.xsd">
  13.  
  14.     <!-- 配置掃描的包 這里配置的包和它的下級包都會被掃描 這樣不僅會掃描@controller @service @repository 還會掃描@component-->
  15.     <context:component-scan base-package="com.zjf" />
  16.  
  17.  
  18.      <!-- 注冊HandlerMapper、HandlerAdapter兩個映射類 這是spring為@Controller分發請求所必須的 同時也是表單數據轉換為對象(如xml json等)必須的-->
  19.     <mvc:annotation-driven />
  20.  
  21.  
  22.      <!-- 訪問靜態資源 如果沒有這個配置 那么靜態的js css文件將會報錯 因為在web.xml中我們配置了<url-pattern>/</url-pattern> -->
  23.     <mvc:default-servlet-handler />
  24.  
  25.     <!-- 視圖解析器 這里使用InternalResourceViewResolver -->
  26.     <bean
  27.         class="org.springframework.web.servlet.view.InternalResourceViewResolver">
  28.         <property name="prefix" value="/WEB-INF/view/"></property>
  29.         <property name="suffix" value=".jsp"></property>
  30.     </bean>
  31.  
  32. </beans>


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM