I\'m trying to redirect without parameters being added to my URL.
@Controller ... public class SomeController { ..
Try this:
public ModelAndView getRequest(HttpServletRequest req, Locale locale, Model model) { ***model.asMap().clear();*** // This clear parameters in url final ModelAndView mav = new ModelAndView("redirect:/test"); return mav; }