spring-web.xml
3.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:mvc="http://www.springframework.org/schema/mvc"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.2.xsd
http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-3.2.xsd"
default-autowire="byName">
<mvc:annotation-driven >
<mvc:argument-resolvers>
<bean class="com.diligrp.website.util.web.resolver.BeanArgumentResolver" />
</mvc:argument-resolvers>
<mvc:message-converters register-defaults="true">
<!-- 将StringHttpMessageConverter的默认编码设为UTF-8 -->
<bean class="org.springframework.http.converter.StringHttpMessageConverter">
<constructor-arg value="UTF-8" />
</bean>
<!-- 将Jackson2HttpMessageConverter的默认格式化输出设为true -->
<bean class="org.springframework.http.converter.json.MappingJackson2HttpMessageConverter">
<property name="prettyPrint" value="true"/>
</bean>
</mvc:message-converters>
</mvc:annotation-driven>
<mvc:resources location="/assets/**" mapping="/assets/**" />
<!-- 视图解析器配置 -->
<bean id="velocityConfigurer"
class="org.springframework.web.servlet.view.velocity.VelocityConfigurer">
<property name="resourceLoaderPath" value="/WEB-INF/views/" />
<property name="configLocation" value="classpath:velocity.properties" />
</bean>
<bean id="viewResolver"
class="org.springframework.web.servlet.view.velocity.VelocityViewResolver">
<property name="suffix" value=".vm" />
<property name="contentType" value="text/html;charset=UTF-8" />
</bean>
<!-- 文件上传 -->
<bean id="multipartResolver"
class="org.springframework.web.multipart.commons.CommonsMultipartResolver">
<property name="defaultEncoding" value="UTF-8" />
</bean>
<bean id="webUtils" class="com.diligrp.mobsite.man.web.utils.WebUtils">
<property name="assetsPath" value="${project.default.assets.path}" />
<property name="commonAssetsPath" value="${project.default.assets.common.path}" />
<property name="localPath" value="${project.default.local.path}" />
<property name="productPath" value="${project.product.detail.path}" />
<property name="shopDomain" value="${project.shop.domain}" />
</bean>
<bean id="velocityDefaultLayout" class="java.lang.String">
<constructor-arg value="${project.view.VMDefault}" />
</bean>
<bean id="dateFormatUtils" class="com.diligrp.website.util.format.DateFormatUtils" />
<bean id="moneyUtils" class="com.diligrp.website.util.format.MoneyUtils" />
<bean id="velocityTools" class="java.util.HashMap">
<constructor-arg>
<map>
<entry key="moneyUtils" value-ref="moneyUtils" />
<entry key="webUtils" value-ref="webUtils" />
<entry key="dateFormatUtils" value-ref="dateFormatUtils" />
</map>
</constructor-arg>
</bean>
</beans>