Skip to content

Instantly share code, notes, and snippets.

@christianoguedes
Created July 14, 2020 14:36
Show Gist options
  • Select an option

  • Save christianoguedes/35685a9d95aa6acf8aef7c1ceb391577 to your computer and use it in GitHub Desktop.

Select an option

Save christianoguedes/35685a9d95aa6acf8aef7c1ceb391577 to your computer and use it in GitHub Desktop.
example controller for rate-limit
@RestController
@RequestMapping("/")
public class StartController {
@GetMapping
public String helloWorld() {
return "Helo World";
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment