spring-web.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" 
  4. xmlns:context="http://www.springframework.org/schema/context" 
  5. xmlns:mvc="http://www.springframework.org/schema/mvc" 
  6. xsi:schemaLocation="http://www.springframework.org/schema/beans 
  7. http://www.springframework.org/schema/beans/spring-beans.xsd 
  8. http://www.springframework.org/schema/context 
  9. http://www.springframework.org/schema/context/spring-context.xsd 
  10. http://www.springframework.org/schema/mvc 
  11. http://www.springframework.org/schema/mvc/spring-mvc-3.2.xsd"> 
  12.  
  13. <!-- HandlerMapping 無需配置,SpringMVC能夠默認啓動,DefaultAnnotationHandlerMapping annotation-driven HandlerMapping --> 
  14.  
  15. <!-- 配置SpringMVC --> 
  16. <!-- 1.開啓SpringMVC註解模式 --> 
  17. <!-- 簡化配置: (1)自動註冊DefaultAnootationHandlerMapping,AnotationMethodHandlerAdapter 
  18. (2)提供一些列:數據綁定,數字和日期的format @NumberFormat, @DateTimeFormat, xml,json默認讀寫支持 --> 
  19. <mvc:annotation-driven/> 
  20.  
  21. <!-- 2.靜態資源默認servlet配置 
  22. (1)加入對靜態資源的處理:js,gif,png 
  23. (2)容許使用"/"作總體映射 , 不會攔截,當爲靜態資源。 
  24. 這兩個都是處理靜態資源的,區別能夠理解成一個是指定一個自定義的serlvet來專門處理相應的靜態資源,若是不指定 
  25. 會默認找default名字的servlet 
  26. 而<mvc:resources>的好處能夠理解成是靜態資源能夠在咱們項目中的任意位置配置,只須要將對應的位置聲明便可 
  27. --> 
  28. <mvc:resources mapping="/resources/**" location="/resources/"/> 
  29. <mvc:default-servlet-handler/> 
  30.  
  31. <!-- 3.定義視圖解析器 --> 
  32. <!-- ViewResolver:視圖解析器。能夠配置多個 可是必定要將這個ViewResolver(InternalResourceViewResolver) 
  33. 放到最後 --> 
  34. <!-- 解析json格式的傳參和封裝數據到頁面,注意spring的版本和對應的配置方式 --> 
  35. <!-- spring-4.2之後 --> 
  36. <bean id="viewResolver" 
  37. class="org.springframework.web.servlet.view.InternalResourceViewResolver"> 
  38. <property name="prefix" value="/WEB-INF/html/"></property> 
  39. <property name="suffix" value=".html"></property> 
  40. </bean> 
  41.  
  42. <!-- 4.掃描web相關的bean --> 
  43. <!-- 激活組件掃描功能,掃描aop的相關組件組件 --> 
  44. <context:component-scan base-package="com.ryanjie.o2o.web"/> 
  45.  
  46. </beans> 
相關文章
相關標籤/搜索