spring-web.xml 3.97 KB
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<beans xmlns="http://www.springframework.org/schema/beans"
	xmlns:context="http://www.springframework.org/schema/context"
	xmlns:mvc="http://www.springframework.org/schema/mvc" xmlns:p="http://www.springframework.org/schema/p"
	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/context http://www.springframework.org/schema/context/spring-context-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.website.manweb.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="assetsUtils" class="com.diligrp.website.manweb.utils.AssetsUtils" />
	
	<!-- 注入操作日志实体 -->
	<bean id="operateLog" class="com.diligrp.website.domain.OperateLog" />
	<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" />
				<entry key="assetsUtils" value-ref="assetsUtils" />
			</map>
		</constructor-arg>
	</bean>

	<bean id="monitorName" class="java.lang.String">
		<constructor-arg value="18d16bbe369f489380655b5bd2150ac1"/>
	</bean>
	<!-- <mvc:interceptors>
		<mvc:interceptor>
			<mvc:mapping path="/**" />
			<mvc:exclude-mapping path="/noAccess.do" />
			<mvc:exclude-mapping path="/loginControl/**" />
			<mvc:exclude-mapping path="/api/**" />
			<mvc:exclude-mapping path="/city/**" />
			<bean class="com.diligrp.manage.sdk.session.SessionInterceptor">
				<property name="enabled" value="${project.manger.enabled}" />
			</bean>
		</mvc:interceptor>
	</mvc:interceptors> -->

</beans>