The client sends some data in one request param like:
example.com/test?myparam=some123data
I would like to convert myparam into several other params and call a necessary controller with such parameters. Like this one:
@RequestMapping(value = "/test")
public @ResponseBody MyObject test(
@RequestParam(value = "prefix") String prefix, // some
@RequestParam(value = "number") int number, // 123
@RequestParam(value = "suffix") String suffix) //data
{ ... }
It is possible to put some custom converter for such situation?