In Spring MVC, I can do this to get a value of items on the query string:
public void sendMessage(HttpServletResponse response,
@RequestParam("Session Id") String sessionId,
But how to I get the complete querystring as one long string? I.e. I don't want individual parameters from it, I want the whole thing?
Many thanks!