java - Seam - list all components -


I would like to get a list of all the components so that I can process them further. Is it possible, if so, how can I do this? I do not believe that I can see all the postcreative events because it is only an exact match and not a regular expression.

@ Observer ("org.jboss.seam.postCreate.")

You can only see those events and * not * because it is put in such a map Where the key is a string.

Any thoughts?

Walter

As told by

I

Each class has been declared as a component , the SIM creates a component definition, and it will be Deletes app scope .

If you want to retrieve the desired components, you can use

  object object = Component.getInstance (component.getName ()) can do;  

Comments