BeanFactory Aware Beans with WireBox
A while ago I wrote a blog post about making beans BeanFactory aware you can read it here: Inject ColdSpring into your Beans. These days I tend to use Wirebox for most of my projects. In the previous blog post I was creating DAOs on the fly and you can do the same with Wirebox. WireBox can also handles instantition and wiring of transient objects.
If wanted to inject WireBox (which is my beanFactory) into a UserService.cfc then I could do:
component hint="I am the UserService"
{
property name="beanFactory" inject="wirebox";
}or if you're not a fan of property injection, then you can use a similar syntax as ColdSpring:
component hint="I am the UserService"
{
void setBeanFactory( beanfactory )
{
variables.beanfactory = arguments.beanfactory;
}
}Now you can have methods like getDAO and newUser which return fully wired beans like so:
component hint="I am the UserService"
{
/*
* returns a wired DAO bean (singleton)
*/
any getDAO( classname )
{
return variables.beanfactor.getInstance( arguments.getDAO );
}
/*
* returns a wired transient User bean
*/
any newUser()
{
return variables.beanfactor.getInstance( "User" );
}
/*
* inject beanfactory
*/
void setBeanFactory( beanfactory )
{
variables.beanfactory = arguments.beanfactory;
}
}
(Note: Opinions expressed in this article and its replies are the opinions of their respective authors and not those of DZone, Inc.)





