您的位置:首页 > 其它

seatao-manage-servlet.xml

2015-11-05 22:59 302 查看
<?xml version="1.0" encoding="UTF-8"?>

<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:p="http://www.springframework.org/schema/p"
xmlns:context="http://www.springframework.org/schema/context"
xmlns:mvc="http://www.springframework.org/schema/mvc"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
        http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-4.0.xsd

        http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd">

<!-- 定义注解驱动 -->
<mvc:annotation-driven >
<mvc:message-converters>
<bean class="com.seatao.common.spring.exetend.converter.json.CallbackMappingJackson2HttpMessageConverter">
<!-- 指定回调函数的请求名 -->
<property name="callbackName" value="callback"/>
</bean>

</mvc:message-converters>
</mvc:annotation-driven>

<!-- 定义Controller的扫描包 -->
<context:component-scan base-package="com.seatao.manage.controller" />

<!-- Example: prefix="/WEB-INF/jsp/", suffix=".jsp", viewname="test" -> 
"/WEB-INF/jsp/test.jsp" -->
<!-- 定义视图解析器,内部资源视图解析器 -->
<bean
class="org.springframework.web.servlet.view.InternalResourceViewResolver">
<property name="prefix" value="/WEB-INF/views/" />
<property name="suffix" value=".jsp" />
<!-- 指定视图解析器的顺序 -->
<property name="order" value="1" />
</bean>

<!-- 定义文件上传解析器 -->
<bean id="multipartResolver"
class="org.springframework.web.multipart.commons.CommonsMultipartResolver">
<!-- 设定默认编码 -->
<property name="defaultEncoding" value="UTF-8"></property>
<!-- 设定文件上传的最大值5MB,5*1024*1024 -->
<property name="maxUploadSize" value="5242880"></property>
</bean>

</beans>
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: