Quick Start
Step one: Add maven dependency
<dependency>
    <groupId>io.esastack</groupId>
    <artifactId>servicekeeper-springboot-adapter</artifactId>
    <version>${servicekeeper.version}</version>
</dependency>
Step two: Add customize configuration by annotation
@SpringBootApplication
public class AppMain {
    @Bean
    public HelloService helloService() {
        return new HelloService();
    }
    public static void main(String[] args) {
        ConfigurableApplicationContext ctx = SpringApplication.run(AppMain.class);
        final HelloService service = ctx.getBean(HelloService.class);
        int errorCount = 0;
        for (int i = 0 ; i < 20; i++) {
            try {
                service.hello();
            } catch (RateLimitOverflowException ex) {
                errorCount++;
            }
        }
        System.out.println("RateLimitOverflowException count: " + errorCount);
        ctx.close();
    }
    public class HelloService {
        @RateLimiter(limitForPeriod = 10)
        public String hello() {
            return "Hello World!";
        }
    }
}