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接口,观察控制台信息