Model Glue 3 introduced bean injection, which allows you to do this in a controller to access it:
beans.component.function();
However, the beans
scope is only available for a controller. How would I access a bean outside of a controller, for example in Application.cfc
or a helper UDF? I have a SimpleConfig
bean that I'd like to access some config info for.