Spring 3.0 / AOP / Aspectj:autoproxy拦截对getConnection()的任何调用

时间:2012-08-21 14:27:08

标签: spring connection aop aspectj

我试图拦截对getConnection()方法的任何调用来设置dbms标识符。我已经实现了一个方面来获得它,但我没有得到任何东西。任何的想法?谢谢!

import java.sql.CallableStatement;
import java.sql.Connection;

import javax.servlet.http.HttpSession;

import org.aspectj.lang.annotation.AfterReturning;
import org.aspectj.lang.annotation.Aspect;
import org.springframework.stereotype.Component;
import org.springframework.web.context.request.RequestAttributes;
import org.springframework.web.context.request.RequestContextHolder;

import es.iberia.tryp.model.entities.Usuario;

@Component
@Aspect
public class ConnectionAspect {

    @AfterReturning(value = "execution(java.sql.Connection javax.sql.DataSource+.getConnection(..))", returning = "connection")
    //@AfterReturning(value = "execution(java.sql.Connection org.springframework.jdbc.datasource.*.*(*))", returning = "connection")
    //@AfterReturning(value = "execution(java.sql.Connection java.sql.Connection *(..))", returning = "connection")
    //@AfterReturning(value = "execution(java.sql.Connection org.springframework.jdbc.datasource.DriverManagerDataSource.*(..))", returning = "connection")

    public void prepare (Connection connection) throws Throwable {

        HttpSession httpSession = (HttpSession) RequestContextHolder.currentRequestAttributes().resolveReference(RequestAttributes.REFERENCE_SESSION);

        if (httpSession!=null && (Usuario)httpSession.getAttribute("usuario")!=null && ((String)((Usuario)httpSession.getAttribute("usuario")).getNomina())!=null) {
            String nomina = (String)((Usuario)httpSession.getAttribute("usuario")).getNomina();
            String prepSql = "{ call DBMS_SESSION.SET_IDENTIFIER('" + nomina +"') }";
            CallableStatement cs = connection.prepareCall(prepSql);                             
            cs.execute();
            cs.close();         
        }
    }
} 

2 个答案:

答案 0 :(得分:3)

检查您是否在xml文件中添加了以下标记。

AOP:AspectJ的自动代理

还要检查是否在xml中为此ConnectionAspect类添加了bean定义。

答案 1 :(得分:1)

是的,我有一个想法:实际上你的切入点与所需的调用相匹配,但它们位于 java 包中,其中(如 javax 包)被排除在编织之外默认情况下。

有一种方法可以通过command lineaop.xml删除该限制,但请注意有关类加载的潜在问题。您必须确保加载java类的类加载器具有weaver attached,因此如果您可以选择不使用LTW,只需编织JDK类文件并使用这些编织类,您就可以了。否则你可能会遇到“鸡蛋和鸡蛋”问题。