coldfusioncfwheels

How to reload Model methods on CFWheels?


I have a model like this:

<cfcomponent extends="Model">
<cffunction name="init">

</cffunction>

<cffunction name="config">
   ...
</cffunction>

<cffunction name="getLogsEncuestas">
    <cfreturn ...>
</cffunction>

I am creating the getLogsEncuestas method, but every time I made a change on it, I have to restart PC in order to updates get done.

I am using a CFWheels inside a ColdFusion server. I have tried to use wheels reload inside box command line and change the environment to development.

Any idea of how to reload model methods without restart server?

Thanks for your help!


Solution

  • It's been a long time since I did anything with CFWheels, but /?reload=true is what I used in the past. Have you tried this yet?