Spring boot 自定义注解

时间:2021-11-15 20:36:05

      相信很多学习Spring框架初学者都会碰到各种注解比如@Controller , @Response,@Compent等各类注解,如何在Spring boot中增加自己的注解,是一个比较基础的话题,也是进入AOP编程大门必经之路。

首先定义一个@Annotation的注解接口如下:

package com.AnnotationTest;


import java.lang.annotation.Documented;
import java.lang.annotation.Retention;
import java.lang.annotation.Target;
import java.lang.annotation.ElementType;
import java.lang.annotation.RetentionPolicy;   


@Target({ElementType.METHOD})
@Retention(RetentionPolicy.RUNTIME)
@Documented
public @interface SelfAnnotation {
 String desc() default "Hi Call";
}

第二部定义切面

package com.AnnotationTest;
import org.aspectj.lang.ProceedingJoinPoint;
import org.aspectj.lang.annotation.After;
import org.aspectj.lang.annotation.Around;
import org.aspectj.lang.annotation.Aspect;
import org.aspectj.lang.annotation.Before;
import org.aspectj.lang.annotation.Pointcut;
import org.springframework.stereotype.Component;


@Aspect
@Component
public class Logging {
@Pointcut("@annotation(com.AnnotationTest.SelfAnnotation)")
private void cut(){}

@Before("cut()") 
public void BeforeCall()
{
 System.out.println("事前通知");
}



@Around("cut()")  
public void AroundCall(ProceedingJoinPoint joinPoint)
{
 System.out.println("环绕通知之开始");
  try {
        joinPoint.proceed();
  } catch (Throwable e) {
        e.printStackTrace();
  }
  System.out.println("环绕通知之结束");
}

@After("cut()")
public void AfterCall()
{
 System.out.println("事后通知");
}

}

第三部定义一个控制器,

package com.AnnotationTest;

import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;

@RestController
public class MyController {

//@Scheduled(fixedRate=5000)
void TimeCall()

{

callMyRoute();

}

@RequestMapping("/index")
public String index() {

runner.Run();
return "this is my index";
}
/*
@SelfAnnotation
public void callMyRoute()
{
System.out.println("MyController is callMyRoute");
}*/


@Autowired
private TestRunner runner;

}

大家注意到红色部分字体,代码,这部分如果使用,使用自定义注解,这个切面是否能生效。

第四部 我们再定义一个注解使用类


package com.AnnotationTest;


import org.springframework.stereotype.Service;


@Service
public class TestRunner {
@SelfAnnotation
public void Run()
{
System.out.println("MyController is Run");
}

}

第五步定义主函数使用Spring boot 启动程序

package com.AnnotationTest;


import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.scheduling.annotation.EnableScheduling;


@SpringBootApplication
@EnableScheduling
public class SelfAnnotationTestApplication {


public static void main(String[] args) {
SpringApplication.run(SelfAnnotationTestApplication.class, args);
}
}

运行结果可以


环绕通知之开始
事前通知
MyController is Run
环绕通知之结束
事后通知

但是,其实控制器中定时任务中注解并没有生效。