-1

我正在使用 spring 2.5 的旧项目工作。应用程序上下文以 .

我需要使用 aop 实现日志记录,我需要记录每个类的方法。试过这个链接: http: //forum.spring.io/forum/spring-projects/aop/4769-apply-jdkregexpmethodpointcut-to-multiple-beans-how 。但是没有用。还有更多选项。(但我觉得这把我带到了一些地方)另外,我不能使用 xsd,所以我不能使用 aop 命名空间。我也不能使用方面 j

请指导我如何实现这一点,因为我已经尝试过。和 * 作为带有切点的模式和 bean 名称。

4

1 回答 1

0

春天.xml

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd">

    <bean id="debugInterceptor" class="test.DebugInterceptor" />

    <bean id="testBean" class="test.TestBean" />

    <bean class="org.springframework.aop.framework.autoproxy.BeanNameAutoProxyCreator">
      <property name="beanNames" value="*" />
      <property name="interceptorNames">
        <list>
          <value>debugInterceptor</value>
        </list>
      </property>
    </bean>
</beans>

测试豆

package test;

public class TestBean {

    public void foo() {
        System.out.println("foo");
    }

    void bar() {
        System.out.println("bar");
    }

}

调试拦截器

package test;

import org.aopalliance.intercept.MethodInterceptor;
import org.aopalliance.intercept.MethodInvocation;

public class DebugInterceptor implements MethodInterceptor {

    public Object invoke(MethodInvocation invocation) throws Throwable {
        System.out.println("Before: invocation=[" + invocation + "]");
        Object rval = invocation.proceed();
        System.out.println("Invocation returned");
        return rval;
    }

}

测试

package test;

import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;

public class AopTest {

    public static void main(String[] args) {
        ApplicationContext ap = new ClassPathXmlApplicationContext("classpath:spring.xml");
        TestBean bean = (TestBean)ap.getBean("testBean");
        bean.foo();
        bean.bar();
    }

}
于 2015-12-30T16:57:21.190 回答