RE: [Trinidad] Update from 1.0.1 to 1.0.3 breaks PPR

2007-11-13 Thread jkvandel
Hello, This morning, I have been struggling with the same problem. I migrated from 1.0.1 to 1.0.3, like the rest of you guys. I also use Facelets 1.1.13 and MyFaces 1.1.5. Facelets 1.1.14 is still in draft and it has some strange bugs, so I think you shouldn't use it in a production setting

RE: Perfomance problem with JSF

2007-09-27 Thread jkvandel
Putting logic (especially expensive database or LDAP calls) inside a getter method is a bad practice. Everytime I do that, I run into the same problems as you do. An option can be something like this: class MyRequestBean { private List list; public List getList() { if