Spring предоставляет возможность добавить HttpServletRequest
в качестве параметра метода.Spring будет автоматически вводить этот параметр при вызове контроллера.
Вот код.
@RequestMapping(path = {"new", "standard/new"}, method = RequestMethod.GET)
public String createRequest(HttpServletRequest request) {
System.out.println(request.getRequestURI());
System.out.println(request.getRequestURL());
}