yugalkishorbais
yugalkishorbais

Reputation: 119

How to make a small application in ColdFusion using Wirebox 1.6 standalone?

I am new to Wirebox 1.6 framework. I have to create a small application, in ColdFusion 10, using the Wirebox 1.6 framework. I have downloaded Wirebox 1.6 Standalone, put it into my webroot, and tested the code below successfully:

<cfscript>
wirebox = createObject("component","wirebox.system.ioc.Injector").init();
</cfscript>
<cfdump var="#wirebox#">

However, I need some sample code that demonstrates the working of the Wirebox framework in an application.Are there any links that provide sample code to run, that will help me understand wirebox?

Upvotes: 0

Views: 398

Answers (2)

George Murphy
George Murphy

Reputation: 1107

Here is a link to some sample code for Wirebox working as a standalone unit.

Upvotes: 1

lx_devr
lx_devr

Reputation: 91

Your best bet is probably to ask on the ColdBox Google Group: http://groups.google.com/group/coldbox

Upvotes: 0

Related Questions