<!--设置日志通知-->
<bean id="logAdvisor" class="org.springframework.aop.support.RegexpMethodPointcutAdvisor">
<property name="advice">
<bean class="com.tixa.fms.service.server.LogService"/>
</property>
<property name="patterns">
<list>
<value>.*insertNadCustomerRealFinance.*</value>
</list>
</property>
</bean>
<!--<bean id="log" class="org.springframework.aop.framework.ProxyFactoryBean">-->
<!--<property name="proxyInterfaces" value="com.tixa.fms.domain.logic.FinanceInFacade" />-->
<!--<property name="interceptorNames">-->
<!--<list>-->
<!--<value>logAdvisor</value>-->
<!--</list>-->
<!--</property>-->
<!--<property name="target">-->
<!--<ref local="financeInFacade" />-->
<!--</property>-->
<!--</bean> -->
<bean id="financeInController" class="com.tixa.fms.web.spring.FinanceInController">
<property name="financeInFacade"><ref local="log"/></property>
<property name="methodNameResolver" ref="methodNameResolver"/>
</bean>
<!--自动代理-->
<bean class="org.springframework.aop.framework.autoproxy.DefaultAdvisorAutoProxyCreator"/>
| 第1页: 第1页 |