Thanks for the tip on that. I took out one of the factories and it was fine.
I may add it back but I'll carefully check for any circular dependencies.
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3991160#3991160
Reply to the post :
http://www.jboss.com/i
You can have two @Factory methods on the same bean. What you can't do is have
circular dependencies, as, for obvious reasons, this would blow up :)
| ...
| @In(create=true)
| Foo foo;
|
| @In(create=true)
| Bar bar;
|
| @Factory("foo")
| public void fooFactory() {
|//