springMVC-servlet.xml 632 B

1234567891011121314
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <beans xmlns="http://www.springframework.org/schema/beans"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xmlns:aop="http://www.springframework.org/schema/aop"
  5. xsi:schemaLocation="http://www.springframework.org/schema/beans
  6. http://www.springframework.org/schema/beans/spring-beans.xsd
  7. http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop.xsd">
  8. <aop:aspectj-autoproxy proxy-target-class="true"/>
  9. <!-- 日志记录AOP实现 -->
  10. <bean class="com.zheng.upms.client.interceptor.LogAspect"/>
  11. </beans>