Guest User

Untitled

a guest
Oct 18th, 2018
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. @RestController
  2. @RequestMapping("<mapping-path>")
  3. public class MyController {
  4. ...
  5. @GetMapping("<path-to-the-endpoint>")
  6. public MyObject getMyObject(@RequestHeader("headerName") String headerName) {
  7. //do something with the header here
  8. }
  9. ...
  10. }
Add Comment
Please, Sign In to add comment