在拦截方法时,原方法如果有异常抛出,要捕捉业务异常,并继续抛出 注意在指定包中存在的方法重名的现象 在websphere环境中,加入aop之后,带来了循环依赖的问题,因为在原有的程序中,存在着循环依赖的情况, 在没有加入aop之后,没有显现,加入之后,则出现 has been injected into other beans xxxxx in its raw version as part of a circular reference, but has eventually been wrapped (for example as part of auto-proxy creation). This means that said other beans do not use the final version of the bean. This is often the result of over-eager type matching - consider using 'getBeanNamesOfType' with the 'allowEagerInit' flag turned off, for example 最终去掉了引用,建立新的第三方对象,解决这个问题.