Есть ли способ обрезать @RequestParam
в Springboot. Например:
@RestController
public class Controller{
@GetMapping(value = "/v1/test/", produces = "application/json")
public Response getTest(
@RequestParam(name = "name") String name){
}
}
GET: localhost:8080/v1/test/?name =test
GET: localhost:8080/v1/test/?name=test