当前位置: 代码迷 >> ASP >> AspectJ中运用CGLIB
  详细解决方案

AspectJ中运用CGLIB

热度:177   发布时间:2012-10-26 10:30:58.0
AspectJ中使用CGLIB

在spring中,当对没有实现接口的类使用aspect的时候,可以使用CGLIB,<aop:aspectj-autoproxy proxy-target-class="true"/>

?

写道

@Aspect
@Component("updateInvocationDefinitionSource")
public class UpdateInvocationDefinitionSource {
???? @AfterReturning("execution(* com.mawujun.facade.MenuManager.save(..))")
???? public void saveMenu() throws Exception{

?????????? System.out.println("-----------------------");

????? }

}

??

?