【Spring】手写一个简易starter

需求:

        自定义一个starter,里面包含一个@TimeLog注解和一个TimeLogAspect切面类,用于统计接口耗时。要求在其它项目引入starter依赖后,启动springboot项目时能进行自动装配。

步骤:

        (1)引入pom依赖


        
        
            org.springframework.boot
            spring-boot-autoconfigure
        
        
            org.springframework.boot
            spring-boot-configuration-processor
        
        
        
            org.springframework.boot
            spring-boot-starter-aop
        
        
            org.projectlombok
            lombok
        
    

        (2)定义注解@TimeLog

@Target(ElementType.METHOD)
@Retention(RetentionPolicy.RUNTIME)
public @interface TimeLog {

}

        @Target注解作用“对象”,这里声明注解作用在方法上。

        @Retention表示注解在运行时会被保留,可以通过反射机制读取。

        (3)定义切面类TimeLogAspect

@Aspect
@Component
public class TimeLogAspect {

    //切点:所有标注了TimeLog注解的方法
    @Pointcut("@annotation(com.hammajang.annotation.TimeLog)")
    public void timeConsume(){

    }

    @Around("timeConsume()")
    public Object doAround(ProceedingJoinPoint proceedingJoinPoint) {
        //开始时间
        long start = System.currentTimeMillis();
        
        Object result = null;
        try {
            //proceedingJoinPoint.proceed():真正的业务处理逻辑
            //result:业务的返回结果
            result = proceedingJoinPoint.proceed();
        } catch (Throwable e) {
            e.printStackTrace();
        }
        //结束时间
        long end = System.currentTimeMillis();

        System.out.println(proceedingJoinPoint.getSignature().getName() + "接口执行总耗时:" + (end - start) +"ms");

        return result;
    }
}

        @Aspect声明这是一个切面类。

        @Component声明这是一个bean,在项目启动时需要加载到Spring容器中。

        (4)定义TimeLogProperties

@ConfigurationProperties(prefix = "hammajang")
@Data
public class TimeLogProperties {


    /**
     * 日志开关
     */
    private boolean enable;
}

        @ConfigurationProperties将配置文件中的属性绑定到 JavaBean(TimeLogProperties)中。注解声明了前缀是hammajang,获取以hammajang为前缀的所有参数进行自动匹配,赋值给类中对应的字段。

        (5)定义TimeLogAutoConfiguration

@Configuration
@ComponentScan(basePackages = "com.hammajang")
@ConditionalOnProperty(prefix = "hammajang",name = "enable",havingValue = "true")
@EnableConfigurationProperties(value = TimeLogProperties.class)
public class TimeLogAutoConfiguration {

}

        @Configuration声明这是一个配置类(会被配置成bean,装载到spring容器中)。

        @ComponentScan扫描指定包路径(可以指定多个),将路径下符合要求的类对象配置成bean,装载到spring容器中。

        @ConditionalOnproperty表示配置文件中存在一个以"hammajang"为前缀的属性,属性名为"enable",当enable的值为true时(havingValue = "true"),才会将TimeLogAutoConfiguration配置类装载到spring容器中。

        @EnableConfigurationProperties启用指定配置类,value属性是一个class数组,表示可以启用多个配置类。

        (6)编译、打包starter

【Spring】手写一个简易starter_第1张图片

测试starter:

        (1)在pom文件中引入我们自定义的starter

        
            com.hammajang
            my-spring-boot-starter
            1.0-SNAPSHOT
        

        (2)在controller层编写测试接口

@RestController
@RequestMapping("/order")
public class OrderController {

    @GetMapping("/test")
    @TimeLog
    public String test(){
        try {
            System.out.println("测试TimeLog注解...");
            //模拟业务处理
            Thread.sleep(500);
        } catch (InterruptedException e) {
            e.printStackTrace();
        }
        return "success";
    }
}

        (3)测试@TimeLog注解是否生效

【Spring】手写一个简易starter_第2张图片

        测试结果

【Spring】手写一个简易starter_第3张图片

你可能感兴趣的:(spring,java,后端)