manager.xml
1.52 KB
<?xml version="1.0" encoding="UTF-8" ?>
<beans xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://www.springframework.org/schema/beans"
xmlns:context="http://www.springframework.org/schema/context"
xmlns:aop="http://www.springframework.org/schema/aop"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop.xsd"
default-autowire="byType">
<aop:aspectj-autoproxy/>
<context:component-scan base-package="com.lecuntao.ordering.*.biz">
<context:include-filter type="regex" expression=".*Impl"/>
</context:component-scan>
<context:component-scan base-package="com.lecuntao.ordering.*.svc">
<context:include-filter type="regex" expression=".*Impl" />
</context:component-scan>
<context:component-scan base-package="com.lecuntao.ordering.customization.message" />
<!--<import resource="classpath:dubbo-erp-consumer.xml"/>-->
<bean id="basecumser" class="com.xiniunet.framework.message.BaseCoumser"/>
<bean id="springContextUtil" class="com.xiniunet.framework.message.SpringContextUtil"/>
<!--提供service-->
<!--<import resource="classpath:dubbo-lecuntao-provider.xml"/>-->
<!-- 定时器配置 -->
<import resource="classpath:lecuntao-quartz.xml"/>
</beans>