码迷,mamicode.com
首页 > 编程语言 > 详细

Spring MVC 配置文件dispatcher-servlet.xml 文件详解(转自 学无止境-yj)

时间:2018-02-02 00:42:21      阅读:221      评论:0      收藏:0      [点我收藏+]

标签:context   class   origin   none   clipboard   文件上传   学无止境   java   信息   

 

  1. <?xml version="1.0" encoding="UTF-8"?>  
  2. <beans xmlns="http://www.springframework.org/schema/beans"  
  3.        xmlns:mvc="http://www.springframework.org/schema/mvc"  
  4.        xmlns:context="http://www.springframework.org/schema/context"  
  5.        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"  
  6.        xsi:schemaLocation="http://www.springframework.org/schema/beans  
  7.             http://www.springframework.org/schema/beans/spring-beans-3.2.xsd  
  8.             http://www.springframework.org/schema/context  
  9.             http://www.springframework.org/schema/context/spring-context-3.2.xsd  
  10.             http://www.springframework.org/schema/mvc  
  11.             http://www.springframework.org/schema/mvc/spring-mvc-3.2.xsd">  
  12.     <!-- 使用spring提供的PropertyPlaceholderConfigurer读取数据库配置信息.properties  
  13.      1、这里的classpath可以认为是项目中的src-  
  14.      2、属性名是 locations,使用子标签<list></list>可以指定多个数据库的配置文件,这里指定了一个  
  15.      其中order属性代表其加载顺序,而ignoreUnresolvablePlaceholders为是否忽略不可解析的 Placeholder,  
  16.      如配置了多个PropertyPlaceholderConfigurer,则需设置为true  
  17.      <bean id="propertyConfigurerForProject2" class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">  
  18.     <property name="order" value="2" />  
  19.     <property name="ignoreUnresolvablePlaceholders" value="true" />  
  20.     <property name="locations">  
  21.       <list>  
  22.         <value>classpath:/spring/include/jdbc-parms.properties</value>  
  23.         <value>classpath:/spring/include/base-config.properties</value>  
  24.       </list>  
  25.     </property>  
  26.     </bean>-->  
  27.     <bean id="propertyConfigurer"  
  28.           class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">  
  29.         <property name="ignoreUnresolvablePlaceholders" value="true"/>  
  30.         <property name="location" value="classpath:/application.properties"/>  
  31.     </bean>  
  32.     <!--注解探测器,在xml配置了这个标签后,spring可以自动去扫描base-pack下面或者子包下面的java文件,  
  33.     如果扫描到有@Component @Controller@Service等这些注解的类,则把这些类注册为bean  
  34.     注意:如果配置了<context:component-scan>那么<context:annotation-config/>标签就可以不用再xml中配置了,因为前者包含了后者。  
  35.     另外<context:annotation-config/>还提供了两个子标签  
  36.     1. <context:include-filter> 2.<context:exclude-filter>  
  37.     <context:component-scan>有一个use-default-filters属性,改属性默认为true,这就意味着会扫描指定包下的全部的标有@Component的类,  
  38.     并注册成bean.也就是@Component的子注解@Service,@Reposity等。所以如果仅仅是在配置文件中这么写  
  39.     <context:component-scan base-package="com.test.myapp.web"/>  
  40.      Use-default-filter此时为true,那么会对base-package包或者子包下的jun所有的进行java类进行扫描,并把匹配的java类注册成bean。  
  41.     可以发现这种扫描的粒度有点太大,如果你只想扫描指定包下面的Controller,该怎么办?此时子标签<context:incluce-filter>就起到了勇武之地。如下所示  
  42.     <context:component-scan base-package="com.test.myapp.web.Controller">  
  43.     <context:include-filter type="annotation" expression="org.springframework.stereotype.Controller"/>  
  44.     </context:component-scan>  
  45.     这样就会只扫描base-package指定下的有@Controller下的java类,并注册成bean.  
  46.     但是因为use-dafault-filter在上面并没有指定,默认就为true,所以当把上面的配置改成如下所示的时候,就会产生与你期望相悖的结果(注意base-package包值得变化)  
  47.     <context:component-scan base-package="com.test.myapp.web ">  
  48.     <context:include-filter type="annotation" expression="org.springframework.stereotype.Controller"/>  
  49.     </context:component-scan>  
  50.     此时,spring不仅扫描了@Controller,还扫描了指定包所在的子包service包下注解@Service的java类  
  51.     此时指定的include-filter没有起到作用,只要把use-default-filter设置成false就可以了。这样就可以避免在base-packeage配置多个包名这种不是很优雅的方法来解决这个问题了。  
  52.     另外在我参与的项目中可以发现在base-package指定的包中有的子包是不含有注解了,所以不用扫描,此时可以指定<context:exclude-filter>来进行过滤,说明此包不需要被扫描。综合以上说明  
  53.     Use-dafault-filters=”false”的情况下:<context:exclude-filter>指定的不扫描,<context:include-filter>指定的扫描-->  
  54.     <context:component-scan base-package="com.test.myapp">  
  55.         <context:include-filter type="annotation" expression="org.springframework.stereotype.Controller"/>  
  56.     </context:component-scan>  
  57.   
  58.     <!-- 视图解析器,根据视图的名称new ModelAndView(name),在配置文件查找对应的bean配置  
  59.      这个视图解析器跟XmlViewResolver有点类似,也是通过把返回的逻辑视图名称去匹配定义好的视图bean对象。  
  60.      不同点有二,一是BeanNameViewResolver要求视图bean对象都定义在Spring的application context中,  
  61.      而XmlViewResolver是在指定的配置文件中寻找视图bean对象,二是BeanNameViewResolver不会进行视图缓存。  
  62.      如果没有设置viewResolver,spring使用InternalResourceViewResolver进行解析。  
  63.      Spring实现ViewResolver的非抽象类且我们经常使用的viewResolver有以下四种:  
  64.      1、InternalResourceViewResolver  将逻辑视图名字解析为一个路径  
  65.      2、BeanNameViewResolver  将逻辑视图名字解析为bean的Name属性,从而根据name属性,找定义View的bean  
  66.      3、ResourceBundleResolver   和BeanNameViewResolver一样,只不过定义的view-bean都在一个properties文件中,用这个类进行加载这个properties文件  
  67.      4、XmlViewResolver  和ResourceBundleResolver一样,只不过定义的view-bean在一个xml文件中,用这个类来加载xml文件  
  68.      DispatcherServlet会加载所有的viewResolver到一个list中,并按照优先级进行解析。  
  69.      我们不想只使用一种视图解析器的话,可以在[spring-dispatcher-name]-servlet.xml定义多个viewResolver:  
  70.      注意order中的值越小,优先级越高。而id为viewResolver 的viewResolver的优先级是最低的。  
  71.      -->  
  72.     <bean class="org.springframework.web.servlet.view.BeanNameViewResolver">  
  73.         <property name="order" value="1"/>  
  74.     </bean>  
  75.     <!--<bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">-->  
  76.         <!--<property name="prefix" value="/WEB-INF/"/>-->  
  77.         <!--<property name="suffix" value=".html"/>-->  
  78.     <!--</bean>-->  
  79.     <!--基于json格式的mvc交互-->  
  80.     <bean name="jsonView" class="com.test.myapp.MappingFastJsonJsonView">  
  81.         <property name="contentType" value="application/json;charset=UTF-8"/>  
  82.     </bean>  
  83.   
  84.     <!-- spring mvc +servlet3.0上传文件配置,文件上传插件uploadify的应用  
  85.      1)  在Web.xml的配置  
  86.      需要在web.xml添加multipart-config,如下所示  
  87.      <servlet>  
  88.         <servlet-name>AcrWeb</servlet-name>  
  89.         <servlet-class>  
  90.             org.springframework.web.servlet.DispatcherServlet  
  91.         </servlet-class>  
  92.         <load-on-startup>1</load-on-startup>  
  93.         <multipart-config>  
  94.             <max-file-size>52428800</max-file-size>  
  95.             <max-request-size>52428800</max-request-size>  
  96.             <file-size-threshold>0</file-size-threshold>  
  97.         </multipart-config>  
  98.     </servlet>  
  99.     2)  在spring的application.xml(名字不一定是application)的配置,需要在该配置文件下添加一个如下的bean  
  100.        spring mvc +servlet3.0上传文件配置  
  101.     <bean id="multipartResolver"  
  102.           class="org.springframework.web.multipart.support.StandardServletMultipartResolver">  
  103.     </bean>  
  104.     3)  在jsp页面中需要引入一些相关的该插件的包  
  105.      <script src="<c:url value="/asset/admin/js/uploadify/jquery.uploadify.min.js"/>"></script>  
  106.     4)   定义一个选择文件的input框  
  107.      <div class="box-body">  
  108.        <span class="label input g1">上传apk</span>  
  109.        <input id="apk_upload" name="apk_upload" type="file"/>  
  110.        <input id="apkUrl" type="hidden" name="apkUrl"/>  
  111.      </div>  
  112.     5)  Input file与插件进行绑定  
  113.     $("#apk_upload").uploadify({  
  114.             swf: "<c:url value=‘/asset/admin/js/uploadify/uploadify.swf‘/>",  
  115.             //cancelImg : "<c:url value=‘/asset/admin/js/uploadify/uploadify-cancel.png‘/>",  
  116.             uploader: "/acr/admin/app/apkupload",  
  117.             fileObjName: "file",//对应着文件输入框  
  118.             width:300,  
  119.             buttonText: ‘<img src="/acr/asset/admin/js/uploadify/upload.png" />‘,  
  120.             // onInit: function () { $(".uploadify-queue").hide();  },  
  121.             //removeCompleted : false,  
  122.             onUploadSuccess : function(file, data, response) {  
  123.                 $("#apkUrl").val(data);  
  124.             },  
  125.             onUploadError : function(file, errorCode, errorMsg, errorString) {  
  126.                 alert(‘文件 ‘ + file.name + ‘ 上传失败: ‘ + errorString);  
  127.             }  
  128.         });  
  129.          注意:该插件的uploadify.swf文件时放入到项目的某一个文件下面  
  130.          Uploader的值对应的是url,该值映射到了springmvc的一个方法,该方法是文件上传的核心,  
  131.          负责把文件写到指定位置的地方去。  
  132.          6)  Spring 后台代码的实现  
  133.          @RequestMapping(value = "/apkupload"method=RequestMethod.POST)  
  134.     public @ResponseBody String apkUpload(  
  135.             @RequestParam MultipartFile file,  
  136.             Model model,  
  137.             HttpServletRequest request) throws IOException {  
  138.         InputStream input = null;  
  139.         OutputStream output = null;  
  140.         String root = "H:/file";  
  141.         //生成了文件名字  
  142.         String filename = file.getOriginalFilename();  
  143.         //文件要上传的位置  
  144.         String fileFullName = buildUpPath(root, filename);  
  145.         try {  
  146.             File dir = new File(root);  
  147.             if(!dir.exists()){  
  148.                 dir.mkdirs();  
  149.             }  
  150.             input = file.getInputStream();  
  151.             output = new FileOutputStream(new File(fileFullName));  
  152.             //保存文件  
  153.             IOUtils.copy(input, output);  
  154.         } catch (Throwable e) {  
  155.             throw e;  
  156.         }finally{  
  157.             IOUtils.closeQuietly(input);  
  158.             IOUtils.closeQuietly(output);  
  159.         }  
  160.         return root+"/"+filename;  
  161.     }  
  162.        其中filename对应着步骤5的onUploadSuccess中的data  
  163.     -->  
  164.     <bean id="multipartResolver"  
  165.           class="org.springframework.web.multipart.support.StandardServletMultipartResolver">  
  166.     </bean>  
[html] view plain copy
 
  1. </beans>  
  1. <?xml version="1.0" encoding="UTF-8"?>  
  2. <beans xmlns="http://www.springframework.org/schema/beans"  
  3.        xmlns:mvc="http://www.springframework.org/schema/mvc"  
  4.        xmlns:context="http://www.springframework.org/schema/context"  
  5.        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"  
  6.        xsi:schemaLocation="http://www.springframework.org/schema/beans  
  7.             http://www.springframework.org/schema/beans/spring-beans-3.2.xsd  
  8.             http://www.springframework.org/schema/context  
  9.             http://www.springframework.org/schema/context/spring-context-3.2.xsd  
  10.             http://www.springframework.org/schema/mvc  
  11.             http://www.springframework.org/schema/mvc/spring-mvc-3.2.xsd">  
  12.     <!-- 使用spring提供的PropertyPlaceholderConfigurer读取数据库配置信息.properties  
  13.      1、这里的classpath可以认为是项目中的src-  
  14.      2、属性名是 locations,使用子标签<list></list>可以指定多个数据库的配置文件,这里指定了一个  
  15.      其中order属性代表其加载顺序,而ignoreUnresolvablePlaceholders为是否忽略不可解析的 Placeholder,  
  16.      如配置了多个PropertyPlaceholderConfigurer,则需设置为true  
  17.      <bean id="propertyConfigurerForProject2" class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">  
  18.     <property name="order" value="2" />  
  19.     <property name="ignoreUnresolvablePlaceholders" value="true" />  
  20.     <property name="locations">  
  21.       <list>  
  22.         <value>classpath:/spring/include/jdbc-parms.properties</value>  
  23.         <value>classpath:/spring/include/base-config.properties</value>  
  24.       </list>  
  25.     </property>  
  26.     </bean>-->  
  27.     <bean id="propertyConfigurer"  
  28.           class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">  
  29.         <property name="ignoreUnresolvablePlaceholders" value="true"/>  
  30.         <property name="location" value="classpath:/application.properties"/>  
  31.     </bean>  
  32.     <!--注解探测器,在xml配置了这个标签后,spring可以自动去扫描base-pack下面或者子包下面的java文件,  
  33.     如果扫描到有@Component @Controller@Service等这些注解的类,则把这些类注册为bean  
  34.     注意:如果配置了<context:component-scan>那么<context:annotation-config/>标签就可以不用再xml中配置了,因为前者包含了后者。  
  35.     另外<context:annotation-config/>还提供了两个子标签  
  36.     1. <context:include-filter> 2.<context:exclude-filter>  
  37.     <context:component-scan>有一个use-default-filters属性,改属性默认为true,这就意味着会扫描指定包下的全部的标有@Component的类,  
  38.     并注册成bean.也就是@Component的子注解@Service,@Reposity等。所以如果仅仅是在配置文件中这么写  
  39.     <context:component-scan base-package="com.test.myapp.web"/>  
  40.      Use-default-filter此时为true,那么会对base-package包或者子包下的jun所有的进行java类进行扫描,并把匹配的java类注册成bean。  
  41.     可以发现这种扫描的粒度有点太大,如果你只想扫描指定包下面的Controller,该怎么办?此时子标签<context:incluce-filter>就起到了勇武之地。如下所示  
  42.     <context:component-scan base-package="com.test.myapp.web.Controller">  
  43.     <context:include-filter type="annotation" expression="org.springframework.stereotype.Controller"/>  
  44.     </context:component-scan>  
  45.     这样就会只扫描base-package指定下的有@Controller下的java类,并注册成bean.  
  46.     但是因为use-dafault-filter在上面并没有指定,默认就为true,所以当把上面的配置改成如下所示的时候,就会产生与你期望相悖的结果(注意base-package包值得变化)  
  47.     <context:component-scan base-package="com.test.myapp.web ">  
  48.     <context:include-filter type="annotation" expression="org.springframework.stereotype.Controller"/>  
  49.     </context:component-scan>  
  50.     此时,spring不仅扫描了@Controller,还扫描了指定包所在的子包service包下注解@Service的java类  
  51.     此时指定的include-filter没有起到作用,只要把use-default-filter设置成false就可以了。这样就可以避免在base-packeage配置多个包名这种不是很优雅的方法来解决这个问题了。  
  52.     另外在我参与的项目中可以发现在base-package指定的包中有的子包是不含有注解了,所以不用扫描,此时可以指定<context:exclude-filter>来进行过滤,说明此包不需要被扫描。综合以上说明  
  53.     Use-dafault-filters=”false”的情况下:<context:exclude-filter>指定的不扫描,<context:include-filter>指定的扫描-->  
  54.     <context:component-scan base-package="com.test.myapp">  
  55.         <context:include-filter type="annotation" expression="org.springframework.stereotype.Controller"/>  
  56.     </context:component-scan>  
  57.   
  58.     <!-- 视图解析器,根据视图的名称new ModelAndView(name),在配置文件查找对应的bean配置  
  59.      这个视图解析器跟XmlViewResolver有点类似,也是通过把返回的逻辑视图名称去匹配定义好的视图bean对象。  
  60.      不同点有二,一是BeanNameViewResolver要求视图bean对象都定义在Spring的application context中,  
  61.      而XmlViewResolver是在指定的配置文件中寻找视图bean对象,二是BeanNameViewResolver不会进行视图缓存。  
  62.      如果没有设置viewResolver,spring使用InternalResourceViewResolver进行解析。  
  63.      Spring实现ViewResolver的非抽象类且我们经常使用的viewResolver有以下四种:  
  64.      1、InternalResourceViewResolver  将逻辑视图名字解析为一个路径  
  65.      2、BeanNameViewResolver  将逻辑视图名字解析为bean的Name属性,从而根据name属性,找定义View的bean  
  66.      3、ResourceBundleResolver   和BeanNameViewResolver一样,只不过定义的view-bean都在一个properties文件中,用这个类进行加载这个properties文件  
  67.      4、XmlViewResolver  和ResourceBundleResolver一样,只不过定义的view-bean在一个xml文件中,用这个类来加载xml文件  
  68.      DispatcherServlet会加载所有的viewResolver到一个list中,并按照优先级进行解析。  
  69.      我们不想只使用一种视图解析器的话,可以在[spring-dispatcher-name]-servlet.xml定义多个viewResolver:  
  70.      注意order中的值越小,优先级越高。而id为viewResolver 的viewResolver的优先级是最低的。  
  71.      -->  
  72.     <bean class="org.springframework.web.servlet.view.BeanNameViewResolver">  
  73.         <property name="order" value="1"/>  
  74.     </bean>  
  75.     <!--<bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">-->  
  76.         <!--<property name="prefix" value="/WEB-INF/"/>-->  
  77.         <!--<property name="suffix" value=".html"/>-->  
  78.     <!--</bean>-->  
  79.     <!--基于json格式的mvc交互-->  
  80.     <bean name="jsonView" class="com.test.myapp.MappingFastJsonJsonView">  
  81.         <property name="contentType" value="application/json;charset=UTF-8"/>  
  82.     </bean>  
  83.   
  84.     <!-- spring mvc +servlet3.0上传文件配置,文件上传插件uploadify的应用  
  85.      1)  在Web.xml的配置  
  86.      需要在web.xml添加multipart-config,如下所示  
  87.      <servlet>  
  88.         <servlet-name>AcrWeb</servlet-name>  
  89.         <servlet-class>  
  90.             org.springframework.web.servlet.DispatcherServlet  
  91.         </servlet-class>  
  92.         <load-on-startup>1</load-on-startup>  
  93.         <multipart-config>  
  94.             <max-file-size>52428800</max-file-size>  
  95.             <max-request-size>52428800</max-request-size>  
  96.             <file-size-threshold>0</file-size-threshold>  
  97.         </multipart-config>  
  98.     </servlet>  
  99.     2)  在spring的application.xml(名字不一定是application)的配置,需要在该配置文件下添加一个如下的bean  
  100.        spring mvc +servlet3.0上传文件配置  
  101.     <bean id="multipartResolver"  
  102.           class="org.springframework.web.multipart.support.StandardServletMultipartResolver">  
  103.     </bean>  
  104.     3)  在jsp页面中需要引入一些相关的该插件的包  
  105.      <script src="<c:url value="/asset/admin/js/uploadify/jquery.uploadify.min.js"/>"></script>  
  106.     4)   定义一个选择文件的input框  
  107.      <div class="box-body">  
  108.        <span class="label input g1">上传apk</span>  
  109.        <input id="apk_upload" name="apk_upload" type="file"/>  
  110.        <input id="apkUrl" type="hidden" name="apkUrl"/>  
  111.      </div>  
  112.     5)  Input file与插件进行绑定  
  113.     $("#apk_upload").uploadify({  
  114.             swf: "<c:url value=‘/asset/admin/js/uploadify/uploadify.swf‘/>",  
  115.             //cancelImg : "<c:url value=‘/asset/admin/js/uploadify/uploadify-cancel.png‘/>",  
  116.             uploader: "/acr/admin/app/apkupload",  
  117.             fileObjName: "file",//对应着文件输入框  
  118.             width:300,  
  119.             buttonText: ‘<img src="/acr/asset/admin/js/uploadify/upload.png" />‘,  
  120.             // onInit: function () { $(".uploadify-queue").hide();  },  
  121.             //removeCompleted : false,  
  122.             onUploadSuccess : function(file, data, response) {  
  123.                 $("#apkUrl").val(data);  
  124.             },  
  125.             onUploadError : function(file, errorCode, errorMsg, errorString) {  
  126.                 alert(‘文件 ‘ + file.name + ‘ 上传失败: ‘ + errorString);  
  127.             }  
  128.         });  
  129.          注意:该插件的uploadify.swf文件时放入到项目的某一个文件下面  
  130.          Uploader的值对应的是url,该值映射到了springmvc的一个方法,该方法是文件上传的核心,  
  131.          负责把文件写到指定位置的地方去。  
  132.          6)  Spring 后台代码的实现  
  133.          @RequestMapping(value = "/apkupload"method=RequestMethod.POST)  
  134.     public @ResponseBody String apkUpload(  
  135.             @RequestParam MultipartFile file,  
  136.             Model model,  
  137.             HttpServletRequest request) throws IOException {  
  138.         InputStream input = null;  
  139.         OutputStream output = null;  
  140.         String root = "H:/file";  
  141.         //生成了文件名字  
  142.         String filename = file.getOriginalFilename();  
  143.         //文件要上传的位置  
  144.         String fileFullName = buildUpPath(root, filename);  
  145.         try {  
  146.             File dir = new File(root);  
  147.             if(!dir.exists()){  
  148.                 dir.mkdirs();  
  149.             }  
  150.             input = file.getInputStream();  
  151.             output = new FileOutputStream(new File(fileFullName));  
  152.             //保存文件  
  153.             IOUtils.copy(input, output);  
  154.         } catch (Throwable e) {  
  155.             throw e;  
  156.         }finally{  
  157.             IOUtils.closeQuietly(input);  
  158.             IOUtils.closeQuietly(output);  
  159.         }  
  160.         return root+"/"+filename;  
  161.     }  
  162.        其中filename对应着步骤5的onUploadSuccess中的data  
  163.     -->  
  164.     <bean id="multipartResolver"  
  165.           class="org.springframework.web.multipart.support.StandardServletMultipartResolver">  
  166.     </bean>  
[html] view plain copy
 
  1. </beans>  

Spring MVC 配置文件dispatcher-servlet.xml 文件详解(转自 学无止境-yj)

标签:context   class   origin   none   clipboard   文件上传   学无止境   java   信息   

原文地址:https://www.cnblogs.com/WeiMJ/p/8401657.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!