spring-mvc.xml 3.53 KB
<?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" xmlns:util="http://www.springframework.org/schema/util"
       xmlns:task="http://www.springframework.org/schema/task"
       xsi:schemaLocation="http://www.springframework.org/schema/beans
                        http://www.springframework.org/schema/beans/spring-beans-3.1.xsd    
                        http://www.springframework.org/schema/context    
                        http://www.springframework.org/schema/context/spring-context-3.1.xsd    
                        http://www.springframework.org/schema/util        
                     http://www.springframework.org/schema/util/spring-util-3.2.xsd  
                        http://www.springframework.org/schema/mvc    
                        http://www.springframework.org/schema/mvc/spring-mvc-4.0.xsd http://www.springframework.org/schema/task http://www.springframework.org/schema/task/spring-task.xsd">

    <context:component-scan base-package="com.yoho"/>

    <mvc:annotation-driven/>

    <task:annotation-driven/>

    <bean id="springContextUtil" class="com.yoho.unions.common.utils.SpringContextUtil"/>

    <bean id="memcachedClientFactory" class="com.yoho.core.cache.impl.MemcachedClientFactory">
        <constructor-arg name="memcachedServers" value="${cache.servers.memcached.address}"/>
    </bean>

    <!-- 元宵节抽签活动写文件 -->
    <bean class="com.yoho.activity.thread.DrawServiceThread"/>


    <!-- 装在properties文件 -->
    <context:property-placeholder location="classpath*:config.properties"/>
    <!-- <bean id="restServiceBeanRegistry" class="com.yoho.core.rest.spring.RestServiceBeanRegistry">
        <property name="registry" ref="serviceRegistry"></property>
    </bean> -->
    <bean id="serviceGlobalExceptionHandler" class="com.yoho.error.exception.handler.ServiceGlobalExceptionHandler"/>

    <!-- 启动SpringMVC的注解功能,完成请求和注解POJO的映射 -->
    <bean
            class="org.springframework.web.servlet.mvc.annotation.AnnotationMethodHandlerAdapter">
        <property name="messageConverters">
            <list>
                <ref bean="stringConverter"/>
                <ref bean="jsonConverter"/>
            </list>
        </property>
    </bean>

    <bean id="stringConverter"
          class="org.springframework.http.converter.StringHttpMessageConverter">
        <property name="supportedMediaTypes">
            <list>
                <value>text/plain;charset=UTF-8</value>
            </list>
        </property>
    </bean>

    <util:map id="orderPushServiceMap" key-type="java.lang.Integer"
              value-type="com.yoho.unions.server.service.IOrderPushService">
        <entry key="3001" value-ref="fanliServiceImpl"/>
        <entry key="3063" value-ref="fanliServiceImpl"/>
        <entry key="3419" value-ref="panshiServiceImpl"/>
    </util:map>

    <!-- 输出对象转JSON支持 -->
    <bean id="jsonConverter"
          class="com.alibaba.fastjson.support.spring.FastJsonHttpMessageConverter">
    </bean>


    <bean id="remoteIPInterceptor" class="com.yoho.unions.interceptor.RemoteIPInterceptor"/>
    <mvc:interceptors>
        <ref bean="securityInterceptor"/>
        <ref bean="threadProfileInterceptor"/>
        <ref bean="remoteIPInterceptor"/>
    </mvc:interceptors>
</beans>