I have a small problem, I have a managed bean with an application scope. This bean should be initialized during the startup of the webapp. I dont see any standardized way to do this, since the bean seems to be initialized first at the first referencing call from the JSF code. (the bean has application scope)
I figured it out, that overriding the standard JSF servlet could to the trick, but I dont really want to do that. Does anybody know if there is another way to have the bean initialized during application startup?
Werner

