我有一个 jodd 项目,它使用 Proxetta 和 JTX 在服务类上创建事务。问题是,当我尝试调试服务类时,我收到:
由于缺少行号属性,无法安装断点
我怀疑 Proxetta 生成我的代理类的方式与它们有关,因为在 Spring 中,如果你没有类的接口,也会发生同样的情况。
我使用 Eclispe 以及 Proxetta 的初始化方式:
public void initProxetta() {
ProxyAspect txServiceProxy = new ProxyAspect(AnnotationTxAdvice.class,
new MethodAnnotationPointcut(Transaction.class) {
@Override
public boolean apply(MethodInfo mi) {
return isPublic(mi) &&
isTopLevelMethod(mi) &&
matchClassName(mi, "*ServiceImpl") &&
super.apply(mi);
}
});
proxetta = ProxyProxetta.withAspects(txServiceProxy);
proxetta.setClassLoader(this.getClass().getClassLoader());
}