Skip to content

Instantly share code, notes, and snippets.

@ronnieduke
Forked from stevewithington/muraMethodInjection.cfm
Created February 16, 2014 23:28
Show Gist options
  • Save ronnieduke/9042171 to your computer and use it in GitHub Desktop.
Save ronnieduke/9042171 to your computer and use it in GitHub Desktop.
<cfscript>
// drop this in your eventHandler.cfc
public any function yourMethod() {
// you do something here
}
public any function onApplicationLoad($) {
arguments.$.getBean('someBean').injectMethod('someMethod', yourMethod);
}
</cfscript>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment