Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

greetings all I have a post method in a controller, which redirects to a new page I a way such like:

@RequestMapping(method = RequestMethod.POST)
    public String post(HttpServletRequest request) {

        return "redirect:http://www.x.appName.com/myPage";

    }

suppose that the user already has a session before the redirection and I want to encode the new url before redirection to maintain the user session how to do so ?

share|improve this question

1 Answer

up vote 4 down vote accepted

You can pass the HttpServletResponse as parameter, and use the encodeRedirectURL(..) method:

String url = "http://www.x.appName.com/myPage";
url = response.encodeRedirectURL(url);
return "redirect:" + url;

But first make sure spring does not do this for you automatically.

share|improve this answer
thanks, but i am not sure if spring does this automatically or not, can anyone expert with spring tell us please ? – Mahmoud Saleh Oct 28 '10 at 13:28
well, try it... – Bozho Oct 28 '10 at 13:31

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.