摘要:
项目结构业务代码@Component("hello")public class HelloImpl implements Hello{ // 定义一个简单方法,模拟应用中的业务逻辑方法 public void foo() { System.out.println("执行Hello组件的foo()方法"); } // 定义一个addUser()方法,模拟应... 阅读全文
摘要:
项目结构业务代码@Component("hello")public class HelloImpl implements Hello{ // 定义一个简单方法,模拟应用中的业务逻辑方法 public void foo() { System.out.println("执行Hello组件的foo()方法"); } // 定义一个addUser()方法,模拟应... 阅读全文
摘要:
说明After增强处理的作用非常类似于异常处理中的finally块的作用,无论如何,他总会在方法执行结束之后被织入,因此特别适应于垃圾回收。项目结构程序@Component("hello")public class HelloImpl implements Hello{ // 定义一个简单方法,模拟应用中的业务逻辑方法 public void foo() { Sys... 阅读全文
摘要:
项目结构程序代码HelloImpl.javaWorldImpl.java定义切面类package org.crazyit.app.aspect;import org.aspectj.lang.annotation.Aspect;import org.aspectj.lang.annotation.Before;// 定义一个切面@Aspectpublic class AuthAspect{ // ... 阅读全文