3

我正在尝试拦截对 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();         
        }
    }
} 
4

2 回答 2

3

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

aop:aspectj-autoproxy

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

于 2012-10-14T12:58:30.053 回答
1

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

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

于 2012-08-21T23:35:30.757 回答