I need to support wrapping a list of ids in curly braces with Spring GetMapping annotation.
When I use square brackets like this, it works:
@GetMapping("/get/[{ids}]")
but double the braces and everything blows up
@GetMapping("/get/{{ids}}")
with the exception: org.springframework.web.util.pattern.PatternParseException: Not allowed to nest variable captures