Sometimes I will want to pass in an identifier to my website through the url, but I don't want to display this to the user. Is there a simple way to take in a request param but not display it to the user when loading the page?
This is a general idea of how my code is set up currently
@GetMapping("/somePage")
public ModelAndView get(@RequestHeader HttpHeaders headers,
@RequestParam(value = "someId", required = false) String someId) {
I know I could theoretically do this on the javascript side, but that seems to require the page to reload or mess with the history.