Eager Init
component extends = "wirebox.system.ioc.config.Binder" {
function configure(){
// map with shorthand or full scope notation
mapPath("model.Coffeshop")
.asSingleton()
.asEagerInit();
}
}
/**
* Eager Component via Annotation
*/
component singleton eagerInit{
}Last updated
Was this helpful?