1. 程式人生 > >spring-web.xml 模板

spring-web.xml 模板

ssm模板
  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>