In Spring MVC, I can do this to get a value of items on the query string:
public void sendMessage(HttpServletResponse response,
The Controller itself knows the contents of the entire query string.
public ModelAndView handleRequest(HttpServletRequest request, HttpServletResponse response) throws Exception
You can then get the full query string from:
request.getQueryString();