[jboss-user] [JBoss Seam] - Re: Intercepting component installation

2007-03-27 Thread [EMAIL PROTECTED]
That wouldn't work for me, I need the components to be initialized before my startup listener runs. I'm using @Autocreate now and call it first thing on the first page of the application. Not a permanent solution. View the original post :

[jboss-user] [JBoss Seam] - Re: Intercepting component installation

2007-03-26 Thread petemuir
I've been thinking we need more hooks into startup. For example, we want to be able to scan for *.jpdl.xml and load them as pageflows. I had been thinking we should have the ability to register a listener on the scanner; this could work here? View the original post :

[jboss-user] [JBoss Seam] - Re: Intercepting component installation

2007-03-24 Thread [EMAIL PROTECTED]
Ah, I'm stupid. Seam registers the components in the application context, so I just need to iterate through the names and pick *.component. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4031337#4031337 Reply to the post :

[jboss-user] [JBoss Seam] - Re: Intercepting component installation

2007-03-24 Thread [EMAIL PROTECTED]
Now I need to intercept component startup. So I could use @Startup but I really depend on _all_ other components being installed first. The depends=[] attribute doesn't really work for me. I guess I could use something like @Startup(dependsPackages=[]). View the original post :