Aliaspooryorik
ColdFusion ORM Book

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;
}
}

 


No comments

Leave a comment

If you found this post useful, interesting or just plain wrong, let me know - I like feedback :)

Please note: If you haven't commented before, then your comments will be moderated before they are displayed.

Please subscribe me to any further comments
 

Search

Wish List

Found something helpful & want to say ’thanks‘? Then visit my Amazon Wish List :)

Categories

Recent Posts