19

I've read in JSF docs that ResponseStateManager has a isPostBack() method. How (and where) can I have an instance of ResponseStateManager?

BalusC
  • 1,082,665
  • 372
  • 3,610
  • 3,555
Pier Luigi
  • 7,871
  • 9
  • 36
  • 46
  • 1
    I see from your comment you have found a practical solution, and that is great. You could publish it here as an answer, and I will vote it up ;) – VonC Jan 09 '09 at 11:28

3 Answers3

44

How to know if I am in a postback?

Depends on JSF version.

In JSF 1.0/1.1, there's no ResponseStateManager#isPostback() method available. check if javax.faces.ViewState parameter is present in the request parameter map as available by ExternalContext#getRequestParameterMap().

public static boolean isPostback() {
    ExternalContext externalContext = FacesContext.getCurrentInstance().getExternalContext();
    return externalContext.getRequestParameterMap().contains("javax.faces.ViewState");
}

In JSF 1.2, indeed use ResponseStateManager#isPostback() which in turn actually checks the presence of javax.faces.ViewState parameter in the request parameter map.

public static boolean isPostback() {
    FacesContext context = FacesContext.getCurrentInstance();
    return context.getRenderKit().getResponseStateManager().isPostback(context);
}

In JSF 2.0, instead use FacesContext#isPostback(), which under the covers actually delegates to ResponseStateManager#isPostback().

public static boolean isPostback() {
    return FacesContext.getCurrentInstance().isPostback();
}
BalusC
  • 1,082,665
  • 372
  • 3,610
  • 3,555
  • 4
    The current instance of the `FacesContext` is available in EL scope by `#{facesContext}`, thus this should do: `#{facesContext.postback}`. – BalusC Jun 12 '12 at 11:03
6

Indeed, before jsf1.2, isPostBack was obtained through the requestScope of the current instance of FaceContext.

Since JSF1.2, The ResponseStateManager (helper class to StateManager that knows the specific rendering technology being used to generate the response, a singleton abstract class, vended by the RenderKit.)

During the restore view phase of the life cycle, ViewHandler retrieves the ResponseStateManager object in order to test if the request is a postback or an initial request.

If a request is a postback, therestoreView method of ViewHandler is called. This method uses theResponseStateManager object to re-build the component tree and restore state. After the tree is built and state is restored, theViewHandler instance is not needed until the render response phase occurs again.

That article mentionned above (Creating and Using a Custom Render Kit) illustrates how to implement/get an ResponseStateManager, through a RenderKit (defined by the tag handler implementing the tag that renders the component).
May be this is enough for you to get your own ResponseStateManager in your context ?

Community
  • 1
  • 1
VonC
  • 1,262,500
  • 529
  • 4,410
  • 5,250
  • thank you for your completeness (i voted you). I needed a more practical hint, that is where I can get an instance of the ResponseStateManager that my implementation is using: I later found that simply I can access RenderKit from FacesContext and use getResponseStateManager() – Pier Luigi Jan 09 '09 at 09:25
2

For JSF1.2

public static boolean isPostback(){
    FacesContext context = FacesContext.getCurrentInstance();
    return context != null && context.getExternalContext().getRequestParameterMap().containsKey(ResponseStateManager.VIEW_STATE_PARAM);
}
bravocharlie
  • 321
  • 1
  • 3