初探spring boot Enable能力

       spring boot 由于其超强的整合能力和强大的社区生态,已经渐渐成为java项目开发必备框架。

       使用过springboot的同学们应该都很清楚,很多第三方组件与springboot集成时只需要添加一个@EnableXXX注解,就可以在项目中使用。下面使用springboot的Enable来实现一个记录方法调用次数的例子。

       第一步. 定义EnableMethod注解类

@Import(MethodConfiguration.class)
@Target(ElementType.TYPE)
@Retention(RetentionPolicy.RUNTIME)
public @interface EnableMethod {
}
@Import(MethodConfiguration.class) 这行代码告诉springboot需要云解析MethodConfiguration这个类。

第二步. MethodConfiguration

@Configurable
@Aspect
public class MethodConfiguration {

    static Map<String, Integer> map = new HashMap<>();

    @Pointcut("@annotation(com.zsc.spring.method.annotions.MethodStatistics)")
    public void pointCut() {
    }

    @Before("pointCut()")
    public void before(JoinPoint point) {
        String methodName = point.getSignature().getName();
        System.out.println(String.format("invoke method %s", methodName));
        Integer count = map.get(methodName);
        if(null == count) {
            map.put(methodName, 1);
        } else {
            map.put(methodName, ++count);
        }
        System.out.println(map.get(methodName));
    }
}

@Configuration:告诉springboot该类作为一个配置类注入到spring容器中

@Aspect: 将MethodConfiguration定义成一个切面类,拦截所有添加MethodStatistics注解方法,最终注入到spring容器中

第三步:将该工程使用maven 打包成jar包,以便使用者引入

第四步:需要使用springboot项目中引入

<dependency>
            <groupId>com.zsc.spring.method</groupId>
            <artifactId>spring-method</artifactId>
            <version>1.0-SNAPSHOT</version>
        </dependency>

第五步:Application类添加@EnableMethod注解

@SpringBootApplication
@EnableMethod
public class Application {

    public static void main(String[] args) {
        SpringApplication app = new SpringApplication(Application.class);
        app.run(args);
    }
}

第六步:添加测试接口,并添加@MethodStatistics注解

@RestController
public class HelloWorldController {

    @RequestMapping(value = "hello")
    @MethodStatistics
    public String hello() {
        return "hello spring boot enable";
    }
}

第七步:启动项目,访问http://localhost:8080/hello接口,观察控制台信息

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值