@RequestMapping(value = "/Foo/{id}/{friendlyUrl:.*}", method = RequestMethod.GET)
public ModelAndView getFoo(@PathVariable final Long id, @PathVariable final String friendlyUrl) {
So it matches ID, and any string. But I want the user to see a string I specify.
foo = fooService.get(id); //use id from pathvariable
redirectView = new RedirectView(foo.getCorrectUrl()); //set url to correct url, not that in path
redirectView.setStatusCode(HttpStatus.MOVED_PERMANENTLY); //moved permanently
modelAndView = new ModelAndView(redirectView);
modelAndView.setViewName("myFoo.jsp");
return modelAndView;
Everything works fine, except the url the user see's is incorrect.
It is (supposed to be) the same functionality as when a question title gets changed on a existing question on the stackoverflow site.
Edit, now doing the below that almost works
return new ModelAndView("redirect:/Foo/"+id+"/"+foo.getUrl());
But that returns a temporarily moved status code, I want permanent 301.
is their a way to get both a rewritten url, and a permanently moved status code using spring-mvc controllers ?
return redirectView? why are messing with ModelAndView at all if it's a redirect which is processed on the client side – Boris Treukhov Dec 30 '12 at 10:46