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.

We have a JSF2.0 application deployed in weblogic-10.3.4 , we have a requirement to give a user generic url ,say (http://web/apply?7777 ) . When user access this page ,based on query string value , user will be re-directed to client specific page,which can be one of 10 different pages.

So one approach is to have a apply.jsf page ,which has got a pre-render event ,which will re-direct the user to different page based on query string,

Is there any other better approach? not to have apply.xhtml.

Note: In web.xml ,we defined pageNotFound.xhtml in case if the page is not found.

share|improve this question

1 Answer

up vote 1 down vote accepted

You could use a simple servlet filter for this.

@WebFilter("/apply")
public class ApplyFilter implements Filter {

    @Override
    public void doFilter(ServletRequest req, ServletResponse res, FilterChain chain) throws IOException, ServletException {
        HttpServletRequest request = (HttpServletRequest) req;
        HttpServletResponse response = (HttpServletResponse) res;

        String queryString = request.getQueryString();
        String redirectURL = determineItBasedOnQueryString(queryString);

        if (redirectURL != null) {
            response.sendRedirect(redirectURL);
        } else {
            response.sendError(HttpServletResponse.SC_NOT_FOUND);
        }
    }

    // ...
}
share|improve this answer
Your inputs for this question, please – Fahim Parkar Jul 7 '12 at 9:13
How do i access the values fromManaged Beans from Faces Context to determine the redirect url in servlet filter ? – user684434 Jul 10 '12 at 18:57
The FacesContext isn't available in a filter at all. Just grab them the low level Servlet API way as attribute from the desired scope. See also stackoverflow.com/questions/2633112/… So, a session scoped JSF managed bean would be available by SessionBean sessionBean = (SessionBean) request.getSession().getAttribute("sessionBean");. – BalusC Jul 10 '12 at 19:05
Thanks Balusc..I will try that ... If i have servlet 2.x ,can i use this – user684434 Jul 10 '12 at 19:13
Why not? JSF runs on top of Servlet API. Without Servlet API, JSF won't even work. – BalusC Jul 10 '12 at 19:15
show 3 more comments

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.