我如何用AspectJ(Spring)框架记录我的方法的原始行号?我是aop编程的新手,所以我只是想知道它是否可能或者如何实现?因为aop将委托我的方法的调用过程,生成新的类和新的方法,所以记录的行号总是不是原始的。
下面是我的一些代码:
基于模式的aop配置:<bean id="logInterceptor" class="com.fuhu.appsub.aop.LogInterceptor"></bean>
<aop:config>
<aop:aspect id="logDBAspect" ref="logInterceptor">
<aop:pointcut id="logDBPointcut" expression="execution(* com.fuhu.appsub.service..*(..)) " />
<aop:after-throwing pointcut-ref="logDBPointcut" throwing="ex" method="logDBException"/>
</aop:aspect>
</aop:config>
这是我的委托方法:
@Transactional(propagation=Propagation.REQUIRED, readOnly=true)
public List<Item> findByName (String name) throws Exception{
try
{
List<Item> itemList = itemRepository.findByName(name);
int i=0,j=1;
int k = j/i;
return itemList;
}
catch(Exception ex)
{
throw new Exception(ex.getMessage() + "in findByName with name=" + name + " file:" + Thread.currentThread().getStackTrace()[2].getFileName() + " line:" + Thread.currentThread().getStackTrace()[2].getLineNumber());
}
}
这是我的委托方法:
public void logDBException( JoinPoint joinPoint, Exception ex) {
if(loggerDB.isErrorEnabled()){
loggerDB.error(ex.getMessage());
}
}
您是使用完整的AspectJ还是仅仅使用Spring的AOP?Spring AOP主要基于Java动态代理。它通常足以满足您的需要,它相当简单,而且它根本不会干扰堆栈跟踪行号。
即使真正的AspectJ也不会改变原始代码的行号。
这是因为类文件中的行号存储在行号表中。这个表允许在一个"行"中包含多个语句。所以即使是额外的AOP调用也不能改变行号。