Recent Posts

RSS Feeds

Arch of JSF Apps Presentation Updated

I finally had time last night to update the Architecture of JSF Applications presentation that I'm doing at the No Fluff Just Stuff Symposiums. You can find the code here.

Enjoy!

Permalink     5 Comments

No longer null, now empty string...

In converting some more of the code from JSF Beta to JSF 1.0 I ran into another gotcha. Previously if I had form fields with nothing in them they would leave the values of the managed beans null. In the 1.0 release they set the values to the empty string (i.e. value.length() == 0). No big deal but my example would not work anymore because it relied on null's.

Permalink     No Comments