Is there a way to get all request parameters in Java Spring? For example, in DJango you can do something like:
def view(request):
print request.META
And from that you can see the GET
or POST
parameters that are sent, which is helpful for debugging. The only way I've seen to do this so far is by specifying the specific parameter, such as @RequestParam(name="hello")