I need to implement http method handler with name
getSomeData
According the name I should use GET http methtod.
but this method accepts very big object as input argument and I suppose it might exceed http GET length limi
In raw http I would use body for get request but I can't do it in spring because @RequestBody
annotation works only for POST method according java doc(I suppose I works for put, too)
Should I use POST instead of GET in my case ?