Hello, I have a quite technical question related to Renderers in JSF. When several components references the same Renderers, what's the expected behaviour?
1) One and only one renderer is instanciated and used for the whole life of application, his methods being called concurrently 2) One and only one renderer is instanciated for each component type, his methods being called concurrently 3) For each component in tree, a renderer in instanciated called during lifecycle and freed when respnse is send 4) Behaviour is not explicited by JSF specs and application should consider Renderers could shared, but are not forced to be. Regards, David Delbecq -- http://www.devlog.be (a belgian developer's logs)

