spring-web.xml
6.42 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
<?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 mapping="/swagger/**" location="/WEB-INF/swagger/"/>-->
<!-- 视图解析器配置 -->
<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="velocityDefaultLayout" class="java.lang.String">
<constructor-arg value="${project.view.VMDefault}" />
</bean>
<!--<bean id="webUtils" class="com.diligrp.mobsite.getway.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="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>
<mvc:interceptors>
<mvc:interceptor>
<mvc:mapping path="/mobsiteApp/**"/>
<mvc:exclude-mapping path="/mobsiteApp/user/buyerLogin"/>
<mvc:exclude-mapping path="/mobsiteApp/user/buyerLogins"/>
<mvc:exclude-mapping path="/mobsiteApp/user/sendAuthCode"/>
<mvc:exclude-mapping path="/mobsiteApp/user/checkAuthCode"/>
<mvc:exclude-mapping path="/mobsiteApp/user/buyerRegister"/>
<mvc:exclude-mapping path="/mobsiteApp/user/buyerRegisters"/>
<mvc:exclude-mapping path="/mobsiteApp/user/loginForAuth"/>
<mvc:exclude-mapping path="/mobsiteApp/user/modifyPwd"/>
<mvc:exclude-mapping path="/mobsiteApp/goods/getProductByCid"/>
<mvc:exclude-mapping path="/mobsiteApp/goods/getProductCategory"/>
<mvc:exclude-mapping path="/mobsiteApp/goods/getProductIntroduction"/>
<mvc:exclude-mapping path="/mobsiteApp/goods/searchGoodList"/>
<mvc:exclude-mapping path="/mobsiteApp/meal/getMealList"/>
<mvc:exclude-mapping path="/mobsiteApp/meal/getMealById"/>
<mvc:exclude-mapping path="/mobsiteApp/shop/getProductRecommend"/>
<mvc:exclude-mapping path="/mobsiteApp/topic/getHomeStatisticsTopic"/>
<mvc:exclude-mapping path="/mobsiteApp/topic/getPicInfo"/>
<mvc:exclude-mapping path="/mobsiteApp/common/getAllCountryTree"/>
<mvc:exclude-mapping path="/mobsiteApp/common/getCity"/>
<mvc:exclude-mapping path="/mobsiteApp/common/getCitys"/>
<mvc:exclude-mapping path="/mobsiteApp/common/getCountry"/>
<mvc:exclude-mapping path="/mobsiteApp/common/uploadImg"/>
<!--卖家-->
<mvc:exclude-mapping path="/mobsiteApp/seller/user/sellerLogin"/>
<mvc:exclude-mapping path="/mobsiteApp/seller/user/sellerLogins"/>
<mvc:exclude-mapping path="/mobsiteApp/seller/user/sendAuthCode"/>
<mvc:exclude-mapping path="/mobsiteApp/seller/user/checkAuthCode"/>
<mvc:exclude-mapping path="/mobsiteApp/seller/user/checkMobile"/>
<mvc:exclude-mapping path="/mobsiteApp/seller/user/sellerRegister"/>
<mvc:exclude-mapping path="/mobsiteApp/seller/user/sellerRegisters"/>
<mvc:exclude-mapping path="/mobsiteApp/seller/user/modifyPwd"/>
<bean class="com.diligrp.mobsite.getway.web.filter.LoginTimeoutInterceptor"/>
</mvc:interceptor>
<!-- <mvc:interceptor>
<mvc:mapping path="/mobsiteApp/**"/>
<mvc:exclude-mapping path="/swagger/**"/>
<mvc:exclude-mapping path="/swagger-ui.html"/>
<mvc:exclude-mapping path="/swagger-resources/**"/>
<mvc:exclude-mapping path="/webjars/**"/>
<mvc:exclude-mapping path="/api-docs/**"/>
<mvc:exclude-mapping path="/v2/api-docs/**"/>
<mvc:exclude-mapping path="/mobsiteApp/supply/uploadMessagePic"/>
<mvc:exclude-mapping path="/mobsiteApp/user/uploadAuthImage"/>
<!– 上传文件 –>
<mvc:exclude-mapping path="/mobsiteApp/common/uploadImg"/>
<mvc:exclude-mapping path="/mobsiteApp/common/uploadAudio"/>
<mvc:exclude-mapping path="/mobsiteApp/common/uploadImgFullUrl"/>
<mvc:exclude-mapping path="/mobsiteApp/version/**"/>
<mvc:exclude-mapping path="/mobsiteApp/topic/getPicInfo"/>
<bean class="com.diligrp.mobsite.getway.web.filter.TokenInterceptor" />
</mvc:interceptor>-->
</mvc:interceptors>
</beans>