自定義註解類java
@Target({ElementType.PARAMETER, ElementType.METHOD}) @Retention(RetentionPolicy.RUNTIME) public @interface LongOu { }
@Target,@Retention都是java的元註解(總共有4個):spring
@Target:設置註解的使用範圍,這裏設置能夠用在參數上和方法上。編程
@Retention:設置註解的生命週期,這裏設置在運行時。springboot
切面類:app
@Aspect//聲明這是一個切面 @Component//把這個類交給spring管理 public class LogOuAspect { // 把切面的鏈接點放在了咱們的註解上 @Pointcut("@annotation(com.example.demo.log.LongOu)") public void ouAspect() { } // 在這裏定義前置切面 @Before("ouAspect()") public void beforeMethod(JoinPoint joinPoint) { // 這裏執行保存日誌的動做 System.out.println("方法前......."); //獲得被切方法的參數 System.out.println(joinPoint.getArgs()[0]); } }
conctronller類:this
@RestController //springboot註解,類下的全部方法返回的數據類型爲jason public class AspectController { @RequestMapping("/getUser") @LongOu//這是咱們自定義的註解,加上這個註解後就可以切到這個方法了。 public User getUser(@PathVariable Integer id,HttpServletRequest request) { System.out.println("方法中。。。。。"); User user=new User(); user.setName("小明"); user.setPassword("xxxx"); return user; } }
實體類:spa
public class User { Integer id; String name; String password; public Integer getId() { return id; } public void setId(Integer id) { this.id = id; } public String getName() { return name; } public void setName(String name) { this.name = name; } public String getPassword() { return password; } public void setPassword(String password) { this.password = password; } }
運行結果:日誌
方法前.......
方法中。。。。。code