Advertisement
alexandrecoussy

Untitled

Apr 1st, 2022
867
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.25 KB | None | 0 0
  1.   @GetMapping("/stocks/statistic/{reportingDate}")
  2.   public ResponseEntity<?> stockJobStatisticListing(
  3.   @PathVariable @DateTimeFormat(pattern = "yyyy-MM-dd") final LocalDate reportingDate) {
  4.  
  5.     // some code
  6.     return ResponseEntity.ok(content);
  7.   }
  8.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement