Category: Tutorials
Timing JSF Requests Using a Phase Listener
One easy way of determining how long it takes to return a page from Seam, and/or JSF is to use a phase listener. This phase listener below logs the end of each phase of the JSF lifecycle and measures the time from the start of the RESTORE_VIEW phase (the first phase in the lifecycle and […]
Continue Reading...Creating A Spring Web Flow JSF Project From Scratch
(Updated – 9 August 2010 – This was written in my pre-Maven days and after a few requests for working source, I’ve built the same project using Maven which can be downloaded. Just unzip the maven project, go to the directory in the command line and type mvn jetty:run to start the server and deploy […]
Continue Reading...Codeless Ajax Ordered and Paginated Tables in Seam
(Update : fixed some of the missing images) One common code pattern that we find ourselves writing time and again is the ability to display tables which are paginated and sortable. Ideally, this is something we should try and be able to re-use throughout our application. Current Situation Let’s start by looking at where we […]
Continue Reading...