Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I need to modify my spring security login page based on where the user came from. My client wants the styles different between the two. If you come from appcontextroot/test vs appcontextroot/choose. I tried to do the below but the String url=savedRequest.getRedirectUrl(); is equal to the spring login page already and not the initial page requested by the user. Any ideas?

ExternalContext externalContext = FacesUtils.getExternalContext();
    HttpServletRequest request = (HttpServletRequest)externalContext.getRequest();
    HttpSession session = request.getSession(false);
    if(session != null) {
        SavedRequest savedRequest = new DefaultSavedRequest(request, new PortResolverImpl());
        String url=savedRequest.getRedirectUrl();
    } 
share|improve this question
I think you must create two different login page, with corresponding filter. – Alois Cochard Mar 22 '11 at 9:48
Alois, thanks for responding, do you know of an example of doing such. I'm new to spring security...thanks! – c12 Mar 22 '11 at 9:55

3 Answers

up vote 17 down vote accepted

You need to extract SavedRequest from the session, not to create a new one:

SavedRequest savedRequest = 
    new HttpSessionRequestCache().getRequest(request, response);
share|improve this answer
Thanks for the reply...I can't find the proper key. I've tried request.getSession().getAttribute(WebAttributes.SAVED_REQUEST); I'm using spring security 3.1.0.M1 – c12 Mar 22 '11 at 9:53
@c12: Don't do it manually, use HttpSessionRequestCache, as shown above. – axtavt Mar 22 '11 at 9:56
thanks got it, it worked! thanks so much! – c12 Mar 22 '11 at 10:02

I didn't make it work with the solution proposed, here's what i found : (Using spring 3.1).

In your fitler class :

CharsetFilter implements Filter {
    @OVerride public void doFilter(ServletRequest request, ServletResponse response, FilterChain next) throws IOException, ServletException {
        HttpServletRequest hsr = (HttpServletRequest) request;
        if (hsr.getUserPrincipal() == null) {
            HttpSession session = hsr.getSession();
            if (!(hsr == null)) {
                logger.info("path : " + hsr.getPathInfo());
                session.setAttribute("beforeLoginUrl", hsr.getPathInfo());
    }
  }
}

Then i your web.xml declare your filter :

<filter>
    <filter-name>springSecurityFilterChain</filter-name>
    <filter-class>org.springframework.web.filter.DelegatingFilterProxy</filter-class>
</filter>
<filter>
    <filter-name>charsetFilter</filter-name>
    <filter-class>org.springframework.web.filter.CharacterEncodingFilter</filter-class>
    <init-param>
        <param-name>encoding</param-name>
        <param-value>UTF-8</param-value>
    </init-param>
</filter>
<filter-mapping>
    <filter-name>charsetFilter</filter-name>
    <url-pattern>/*</url-pattern>
</filter-mapping>
<filter>
    <filter-name>CharsetFilter</filter-name>
    <filter-class>com.ent.foo.CharsetFilter</filter-class>
    <init-param>
        <param-name>requestEncoding</param-name>
        <param-value>UTF-8</param-value>
    </init-param>
</filter>

Then in your redirect url after successful login just get the HttpSession back :

@RequestMapping(value = "successful")
public void showSuccessfulogin (HttpSession session) {
    String redirectUrl = (String) session.getAttribute("beforeLoginUrl");
    if (redirectUrl != null) {
        session.removeAttribute("beforeLoginUrl");
        return "redirect:" + redirectUrl;
    }
    return "redirect:/";
}

Here you got the stuff to make it work, but you'll have to check the

hsr.getPathInfo()

and see if it ends with .css or .js, etc...

Also if the login fail you'll should see if session attribute is already set and see any others special case !

Btw my filter was used before to format all input/output in utf-8.

Hope it'll help any.

share|improve this answer
You shouldn't use the filter for static resources, this will hit performance heavily. – weekens Jan 20 at 14:51
Could you be more precise ? – rweiller Feb 15 at 14:23
SavedRequest savedRequest = (SavedRequest)session.getAttribute("SPRING_SECURITY_SAVED_REQUEST");
// ...check for null...
String targetUrl = savedRequest.getRedirectUrl();

Ugly but working, if you don't have the HttpServletResponse available (e.g. in case you use org.springframework.social.connect.web.SignInAdapter).

Tested with Spring Security 3.1.0.RC2.

share|improve this answer

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.