spring.xml 2.65 KB
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<beans xmlns="http://www.springframework.org/schema/beans"
	   xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
	   xmlns:context="http://www.springframework.org/schema/context"
	   xmlns:aop="http://www.springframework.org/schema/aop" xmlns:mvc="http://www.springframework.org/schema/mvc"
	   xsi:schemaLocation="http://www.springframework.org/schema/beans
	 					http://www.springframework.org/schema/beans/spring-beans-3.2.xsd 
	 					http://www.springframework.org/schema/aop 
       					http://www.springframework.org/schema/aop/spring-aop.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.xsd"
	   default-autowire="byName">


	<context:component-scan base-package="com.diligrp.mobsite.getway" />
	<!--<context:component-scan base-package="com.mangofactory" />-->
	<mvc:annotation-driven/>

	<aop:aspectj-autoproxy proxy-target-class="true"/>
	<!--swagger配置 -->
	<!--<bean class="com.mangofactory.swagger.configuration.SpringSwaggerConfig" />-->
	<bean
		class="org.springframework.context.support.PropertySourcesPlaceholderConfigurer">
		<property name="locations">
			<list>
				<value>classpath:db.properties</value>
				<value>classpath:config.properties</value>
			</list>
		</property>
		<property name="ignoreUnresolvablePlaceholders" value="true" />
	</bean>

	<!-- 自动注入ApplicationContext -->
	<bean class="com.diligrp.website.util.spring.ApplicationContextUtil" />
	<!-- jackson -->
	<bean  
        class="org.springframework.web.servlet.mvc.annotation.AnnotationMethodHandlerAdapter">  
        <property name="messageConverters">  
            <list>  
                <bean  
                    class="org.springframework.http.converter.json.MappingJacksonHttpMessageConverter" />  
                <bean  
                    class="org.springframework.http.converter.StringHttpMessageConverter">  
                    <property name="supportedMediaTypes">  
                        <list>  
                            <value>text/plain; charset=UTF-8</value>  
                        </list>  
                    </property>  
                </bean>  
            </list>  
        </property>  
    </bean>

    <bean class="com.diligrp.util.rocketMQUtil.DiliMQLauncher" />
    
	<import resource="classpath:spring-web.xml" />
	<import resource="classpath:spring-dao.xml" />
	<import resource="classpath:spring-redis.xml" />
	<import resource="classpath:spring-rpc.xml" />
	<import resource="classpath:spring-hbase.xml" />

</beans>