I have a web application in JSF. I need to add AJAX functionality to it. How can I do this?
|
|
I'll assume that you're using JSF 1.x since JSF 2.x already ships with buitin Ajax functionality and this question would be very rhetorical then. If upgrading to JSF 2.x is indeed not an option, then you'll have to look for a 3rd party JSF 1.x component library with builtin Ajax functionality, such as RichFaces 3.x (not 4.x since it requires JSF 2.x) or PrimeFaces 1.x (not 2.x or newer since it requires JSF 2.x). RichFaces 3.x ships with Ajax4jsf tag library ( It is not easily possible to introduce "just" a JS library such as Dojo, jQuery, etc, because you need to alter the JSF component tree state in the server side as well whenever you make changes in the HTML DOM tree in the client side. Those simple JS libraries doesn't take that into account. You would have to write a lot of additional server side code in flavor of a custom view handler. But that is exactly what among others Ajax4jsf is already doing, so you'd like to use it instead of reinventing the wheel. If you really intend to homegrow; chapter 11 of the book JSF: The Complete Reference gives a good introduction of all things you would need to take into account. You'll see that it's not exactly that trivial. |
||||
|
|
|
With jsf 2.0 we have See Also |
|||
|
|