| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 | <?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans"    xmlns:aop="http://www.springframework.org/schema/aop"     xmlns:context="http://www.springframework.org/schema/context"     xmlns:p="http://www.springframework.org/schema/p"     xmlns:tx="http://www.springframework.org/schema/tx"    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.0.xsd 		http://www.springframework.org/schema/context 		http://www.springframework.org/schema/context/spring-context-3.0.xsd 		http://www.springframework.org/schema/aop 		http://www.springframework.org/schema/aop/spring-aop-3.0.xsd 		http://www.springframework.org/schema/tx 		http://www.springframework.org/schema/tx/spring-tx-3.0.xsd		http://www.springframework.org/schema/mvc		http://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd">	<mvc:annotation-driven /> 	<context:component-scan base-package="com.dianping.job.controller" />		<mvc:resources mapping="/favicon.ico" location="/favicon.ico" />	<mvc:resources mapping="/static/**" location="/static/" />	<mvc:resources mapping="/**/*.html" location="/" />		<bean id="viewResolver"	class="org.springframework.web.servlet.view.freemarker.FreeMarkerViewResolver">		<property name="viewClass" value="org.springframework.web.servlet.view.freemarker.FreeMarkerView" />		<property name="prefix" value="" />		<property name="suffix" value=".ftl" />		<property name="contentType" value="text/html;charset=UTF-8" />		<property name="exposeSpringMacroHelpers" value="true" />		<property name="exposeRequestAttributes" value="true" />		<property name="exposeSessionAttributes" value="true" />		<property name="requestContextAttribute" value="request" />		<property name="cache" value="true" />		<property name="order" value="0" />	</bean>		<!--	// 自定义拦截器,支持SSO登陆拦截 	<mvc:interceptors>		<mvc:interceptor>			<mvc:mapping path="/**"/>			<bean class="com.xxl.controller.interceptor.PermissionInterceptor"/>		</mvc:interceptor>	</mvc:interceptors> 	<bean id="exceptionResolver" class="com.xxl.controller.resolver.WebExceptionResolver" />  	-->	</beans>
 |