阅读背景:

初学springmvc applicationContext-springmvc.xml配置文件

来源:互联网 
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="https://www.springframework.org/schema/beans"
       xmlns:xsi="https://www.w3.org/2001/XMLSchema-instance"
       xmlns:mvc="https://www.springframework.org/schema/mvc"
       xmlns:context="https://www.springframework.org/schema/context"
       xsi:schemaLocation="
        https://www.springframework.org/schema/beans
        https://www.springframework.org/schema/beans/spring-beans.xsd
        https://www.springframework.org/schema/context
        https://www.springframework.org/schema/context/spring-context.xsd
        https://www.springframework.org/schema/mvc
        https://www.springframework.org/schema/mvc/spring-mvc.xsd">

    <!--扫描controller注解包-->
    <context:component-scan base-package="cn.bdqn.dxp.controller"></context:component-scan>


    <!--  启用springmvc注解支持 -->
    <mvc:annotation-driven>
        <!--消息转换器-->
        <mvc:message-converters>
            <!--String类型的转换器-->
            <bean class="org.springframework.http.converter.StringHttpMessageConverter">
                <!--支持媒体类型-->
                <property name="supportedMediaTypes">
                    <list>
                        <value>text/html;charset=utf-8</value>
                    </list>
                </property>
            </bean>
            <bean class="com.alibaba.fastjson.support.spring.FastJsonHttpMessageConverter">
                <!-- 媒体类型:会影响到浏览器的解析 -->
                <property name="supportedMediaTypes">
                    <list>
                        <value>application/json;charset=utf-8</value>
                    </list>
                </property>
            </bean>
        </mvc:message-converters>
    </mvc:annotation-driven>

    <!-- resources:资源 mapping:浏览器请求的路径   location:项目中的路径 -->
    <mvc:resources mapping="/**" location="/"/>


    <bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
        <property name="prefix" value="/"></property>
        <property name="suffix" value=".jsp"></property>
    </bean>

    <!--CommonsMultipartResolver实现文件上传,加入IOC容器-->
    <bean id="multipartResolver" class="org.springframework.web.multipart.commons.CommonsMultipartResolver">
        <!--上传文件编码-->
        <property name="defaultEncoding" value="UTF-8"></property>
        <!--上传单个文件最大值,单位Byte   value=-1  无限最大值-->
        <property name="maxUploadSize" value="120000000"></property>
        <!--缓存中的内存-->
        <property name="maxInMemorySize" value="40960"></property>
    </bean>

</beans><?xml version="1.0" encoding="UTF-8"?>
<b



你的当前访问异常,请进行认证后继续阅读剩余内容。

分享到: