How JSF Works and how to Debug it – is polyglot an alternative?


Codever Logo

(P) Codever is an open source bookmarks and snippets manager for developers & co. See our How To guides to help you get started. Public bookmarks repos on Github ā­šŸ™


JSF is not what we often think it is. It’s also a framework that can be somewhat tricky to debug, specially when first encountered. In this post let’s go over on why that is and provide some JSF debugging techniques. We will go through the following topics:

  • JSF is not what we often think
  • The difficulties of JSF debugging
  • How to debug JSF systematically
  • How JSF Works – The JSF lifecycle
  • Debugging an Ajax request from browser to server and back
  • Debugging the JSF frontend Javascript code
  • Final thoughts – alternatives? (questions to the reader)

JSF is not what we often think

JSF looks on first look like an enterprise Java/XML frontend framework, but under the hood it reallyĀ isn’t. It’s really a polyglot Java/Javascript framework, where the client Javascript part is non-neglectable and also important to understand it. It also has good support for direct HTML/CSS use.

JSF developers are on ocasion already polyglot developers, whose primary language is Java but still need to use ocasionally Javascript.

The difficulties of JSF debugging

WhenĀ comparing JSF to GWT and AngularJSĀ in a previous post, I found that the (most often used) approach that the framework takes of abstracting HTML and CSS from the developer behind XML adds to the difficulty of debugging, because it creates an extra level of indirection.

AĀ more direct approachĀ of using HTML/CSS directly is also possible, but it seems enterprise Java developers tend to stick to XML in most cases, because it’s a more familiar technology. Also another problem is that the client side Javascript part of the framework/libraries is not very well documented, and it’s often important to understand what is going on.

The only way to debug JSF systematically

When first encountering JSF, I first tried to approach it from a Java, XML and documentation only. While I could do a part of the work that way, there where frequent situations where that approach was really not sufficient.

The conclusion that I got to is that in order to be able to debug JSF applications effectively, an understanding of the following is needed:

  • HTML
  • CSS
  • Javascript
  • HTTP
  • Chrome Dev Tools, Firebug or equivalent
  • The JSF Lifecycle

This might sound surprising to developers that work mostly in Java/XML, but this web-centric approach to debugging JSF is the only way that I managed to tackle many requirements that needed some significant component customization, or to be able to fix certain bugs.

Letā€™s start by understanding the inner workings of JSF, so that we can debug it better.

The JSF take on MVC

The way JSF approachesĀ MVCĀ is that the whole 3 components reside on the server side:

  • The Model is a tree of plain Java objects
  • The View is a server side template defined in XML that is read to build an in-memory view definition
  • The Controller is a Java servlet, that receives each request and processes them through a series of steps

The browser is assumed to be simply a rendering engine for the HTML generated at server side. Ajax is achieved by submitting parts of the page for server processing, and requesting a server to ā€˜repaintā€™ only portions of the screen, without navigating away from the page.

The JSF Lifecycle

Once an HTTP request reaches the backend, it gets caught by the JSF Controller that will then process it. The request goes through a series of phases known as the JSF lifecycle, which is essential to understand how JSF works:

JSF Hello World Application

Design Goals of the JSF Lifecycle

The whole point of the lifecycle is to manage MVC 100% on the server side, using the browser as a rendering platform only.

The initial idea was to decouple the rendering platform from the server-side UI component model, in order to allow to replace HTML with alternative markup languages by swapping the Render Response phase.

This was in the early 2000’s when HTML could be soon replaced by XML-based alternatives (that never came to be), and then HTML5 came along. Also browsers where much more qwirkier than what they are today, and the idea of cross-browser Javascript libraries was not widespread.

So letā€™s go through each phase and see how to debug it if needed, starting in the browser. Let’s base ourselves in a simple example that uses an Ajax request.

A JSF 2 Hello World Example

The following is a minimal JSF 2 page, that receives an input text from the user, sends the text via an Ajax request to the backend and refreshes only an output label:

<h:body>
    <h3>JSF 2.2 Hello World Example</h3>
    <h:form>
        <h:outputtext id="output" value="#{simpleFormBean.inputText}"></h:outputtext>
        <h:inputtext id="input" value="#{simpleFormBean.inputText}"></h:inputtext>
        <h:commandbutton value="Submit" action="index">
            <f:ajax execute="input" render="output">
        </f:ajax></h:commandbutton>
    </h:form>
</h:body>

The page looks like this:

JSF Hello World Application

Following one Ajax request – to the server and back

Letā€™s click submit in order to trigger the Ajax request, and use the Chrome Dev Tools Network tab (right click and inspect any element on the page).What goes over the wire? This is what we see in the Form Data section of the request:

j_idt8:input: Hello World
javax.faces.ViewState: -2798727343674530263:954565149304692491
javax.faces.source: j_idt8:j_idt9
javax.faces.partial.event: click
javax.faces.partial.execute: j_idt8:j_idt9 j_idt8:input
javax.faces.partial.render: j_idt8:output
javax.faces.behavior.event: action
javax.faces.partial.ajax:true

This request says:

The new value of the input field is “Hello World”, send me a new value for the output field only, and don’t navigate away from this page.

Let’s see how this can be read from the request. As we can see, the new values of the form are submitted to the server, namely the ā€œHello Worldā€ value. This is the meaning of the several entries:

  • javax.faces.ViewStateĀ identifies the view from which the request was made.
  • The request is an Ajax request, as indicated by the flagĀ javax.faces.partial.ajax,
  • The request was triggered by a click as defined inĀ javax.faces.partial.event.

But what are thoseĀ j_Ā strings ? Those are space separated generated identifiers of HTML elements. For example this is how we can see what is the page element corresponding toĀ j_idt8:input, using the Chrome Dev Tools:

JSF Hello World Application

There are also 3 extra form parameters that use these identifiers, that are linked to UI components:

  • javax.faces.source: The identifier of the HTML element that originated this request, in this case the Id of the submit button.
  • javax.faces.execute: The list of identifiers of the elements whose values are sent to the server for processing, in this case the input text field.
  • javax.faces.render: The list of identifiers of the sections of the page that are to be ā€˜repainted’, in this case the output field only.

But what happens when the request hits the server ?

JSF lifecycle – Restore View Phase

Once the request reaches the server, the JSF controller will inspect the
javax.faces.ViewStateĀ and identify to which view it refers. It will then build or restore a Java representation of the view, that is somehow similar to the document definition in the browser side.

The view will be attached to the request and used throughout. There is usually little need to debug this phase during application development.

JSF Lifecycle – Apply Request Values

The JSF Controller will then apply to the view widgets the new values received via the request. The values might be invalid at this point. Each JSF component gets a call to itā€™sĀ decodeĀ method in this phase.

This method will retrieve the submitted value for the widget in question from the HTTP request and store it on the widget itself.

To debug this, letā€™s put a breakpoint in theĀ decodeĀ method of the
HtmlInputTextĀ class, to see the value ā€œHello Worldā€:

JSF Hello World Application

Notice the conditional breakpoint using the HTMLĀ clientIdĀ of the field we want. This would allow to quickly debug only the decoding of the component we want, even in a large page with many other similar widgets. Next after decoding is the validation phase.

JSF Lifecycle – Process Validations

In this phase, validations are applied and if the value is found to be in error (for example a date is invalid), then the request bypasses Invoke Application and goes directly to Render Response phase.

To debug this phase, a similar breakpoint can be put on method
processValidators, or in the validators themselves if you happen to know which ones or if they are custom.

JSF Lifecycle – Update Model

In this phase, we know all the submitted values where correct. JSF can now update the view model by applying the new values received in the requests to the plain Java objects in the view model.

This phase can be debugged by putting a breakpoint in the
processUpdatesĀ method of the component in question, eventually using a similar conditional breakpoint to break only on the component needed.

JSF Lifecycle – Invoke Application

This is the simplest phase to debug. The application now has an updated view model, and some logic can be applied on it.

This is where the action listeners defined in the XML view definition (the ‘action’ properties and the listener tags) are executed.

JSF Lifecycle – Render Response

This is the phase that I end up debugging the most: why is the value not being displayed as we expect it, etc, it all can be found here. In this phase the view and the new model values will be transformed from Java objects into HTML, CSS and eventually Javascript and sent back over the wire to the browser.

This phase can be debugged using breakpoints in theĀ encodeBegin,
encodeChildrenĀ andĀ encodeEndĀ methods of the component in question.

The components will either render themselves or delegate rendering to aRendererĀ class.

Back in the browser

It was a long trip, but we are back where we started! This is how the response generated by JSF looks once received in the browser:

<!--?xml version='1.0' encoding='UTF-8'?-->
<partial-response>
    <changes>
        <update id="j_idt8:output"><span id="j_idt8:output"></span></update>
        <update id="javax.faces.ViewState">-8188482707773604502:6956126859616189525></update>
    </changes>
</partial-response>

What the Javascript part of the framework will do is to take the contents of the partial response, update by update.

Using the Id of the update, the client side JSF callback will search for a component with that Id, delete it from the document and replace it with the new updated version.

In this case, “Hello World” will show up on the label next to the Input text field!

And so thats how JSF works under the hood. But what about if we need to debug the Javascript part of the framework?

Debugging the JSF Javascript Code

The Chrome Dev Tools can help debug the client part. For example letā€™s say that we want to halt the client when an Ajax request is triggered. We need to go to the sources tab, add an XHR (Ajax) breakpoint and trigger the browser action. The debugger will stop and the call stack can be examined:

JSF Hello World Application

For some frameworks like Primefaces, the Javascript sources might be minified (non human-readable) because they are optimized for size.

To solve this, download the source code of the library and do a non minified build of the jar. There are usually instructions for this, otherwise check the project poms. This will install in your Maven repository a jar with non minified sources for debugging.

The UI Debug tag:

TheĀ ui:debugĀ tag allows to view a lot of debugging information using a keyboard shortcut, seeĀ hereĀ for further details.

Final Thoughts

JSF is very popular in the enterprise Java world, and it handles a lot of problems well, specially if the UI designers take into account the possibilities of the widget library being used.

The problem is that there are usually feature requests that force us to dig deeper into the widgets internal implementation in order to customize them, and this requires HTML, CSS, Javascript and HTTP plus JSF lifecycle knowledge.

Is polyglot an alternative?

We can wonder that if developers have to know a fair amount about web technologies in order to be able to debug JSF effectively, then it would be simpler to build enterprise front ends (just the client part) using those technologies directly instead.

It’s possible that a polyglot approach of a Java backend plus a Javascript-only frontend could be proved effective in a nearby future, specially using some sort of a client side MVC framework likeĀ Angular.

This would require learning more Javascript, (have a look atĀ Javascript for Java developersĀ post if curious), but this is already often necessary to do custom widget development in JSF anyway.

Conclusions and some questions if you have the time

Thanks for reading, please take a moment to share your thoughts on these matters on the comments bellow:

  • do you believe polyglot development (Java/Javascript) is a viable alternative in general, and in your workplace in particular?
  • Did you find one of the GWT-based frameworks (plain GWT, Vaadin, Errai), or the Play Framework to be easier to use and of better productivity?

Published at Codepedia.org with permission of Aleksey Novik ā€“ source How JSF Works and how to Debug it ā€“ is polyglot an alternative?Ā from https://blog.jhades.org/

Podcastpedia image

<strongAleksey Novik</strong>

Software developer, likes to learn new technologies, hang out on stackoverflow and blog on tips and tricks on Java/Javascript polyglot enterprise development.

Ā 

Ā 

Subscribe to our newsletter for more code resources and news

routerLink with query params in Angular html template

routerLink with query params in Angular html template code snippet Continue reading