You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

26 lines
1.4 KiB

1 year ago
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <beans xmlns="http://www.springframework.org/schema/beans"
  3. xmlns:tx="http://www.springframework.org/schema/tx"
  4. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  5. xmlns:context="http://www.springframework.org/schema/context"
  6. xmlns:aop="http://www.springframework.org/schema/aop"
  7. xsi:schemaLocation="
  8. http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.0.xsd
  9. http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.1.xsd
  10. http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-4.1.xsd
  11. http://www.springframework.org/schema/aop
  12. http://www.springframework.org/schema/aop/spring-aop.xsd">
  13. <!-- spring context -->
  14. <context:annotation-config />
  15. <!-- config utils -->
  16. <bean id="DWApplicationConfigUtils" class="com.digiwin.app.common.DWApplicationConfigUtils" />
  17. <!-- service log -->
  18. <bean class="com.digiwin.app.container.ServicePublicMethodLogInterceptor" id="serviceInputOutputInterceptor"/>
  19. <!-- service input out aop -->
  20. <aop:config proxy-target-class="true">
  21. <aop:pointcut expression="execution(* com.digiwin.athena.app.service..*.*(..))" id="apiInputOutPointCut"/>
  22. <aop:advisor advice-ref="serviceInputOutputInterceptor" pointcut-ref="apiInputOutPointCut" order="10"/>
  23. </aop:config>
  24. </beans>