请问各位大侠:spring 采用注解方式管理事务 单步调试进入JdkDynamicAopProxy,不能进入被调用的方法中

请问各位大侠:spring 采用注解方式管理事务 单步调试进入JdkDynamicAopProxy,不能进入被调用的方法中,
我在action中的调用处Serializable id = loginServices.saveCusUser(cusUser);设置断点,[b][color=red]F5单步执行时,不能进入被调用的方法[/color][/b],而是进入了
[b][color=red]JdkDynamicAopProxy[/color][/b],继续单步执行会提示

[color=red][b]Source not found for $Proxy18.saveCusUser(CusUser) line: not available[/b][/color]但是并没有抛出异常,数据正确保存了,不知是何原因???
(基于CGLIB也是一样问题)

我的代码
Action 中

//此处调用services 方法,保存对象
Serializable id = loginServices.saveCusUser(cusUser);

service 中:

@Transactional
@Service("loginServices")
public class LoginServicesImpl implements ILoginServices{

@Autowired
private LoginDao loginDao

public Serializable saveCusUser(CusUser cusUser){
    return loginDao.saveCusUser(cusUser);
}

}

Dao:

public Serializable saveCusUser(Object cusUser){

    Serializable id = null;
             Session cur_session = null;
    try {

        cur_session = this.getCurrentSession();
        id = cur_session.save(cusUser);
    } catch (HibernateException e) {
        e.printStackTrace();
    }

return id ;
}

这是正常的 动态代理直接生成class,没有.java源码。 所以报Source not found。 只有源码的debug时才可以到源码中。

继续debug就行,,这个不影响我们调试

1)选择 Debug

2)选择 BreakPoints 删除全部(Remove All Breakpoints)

3)点击清除按钮清除所有断点