restart application without restarting server?

后端 未结 8 760
别那么骄傲
别那么骄傲 2020-12-10 01:35

Is there a way to restart a ColdFusion application without restarting the entire server?

There are two ColdFusion applications running on a server and I only want to

相关标签:
8条回答
  • 2020-12-10 02:16
    <cfset structClear(application) /> 
    
    0 讨论(0)
  • 2020-12-10 02:17

    Use cfinvoke.

    <cfinvoke method="onApplicationEnd" component="Application">
        <cfinvokeargument name="ApplicationScope" value="#application#" />
    </cfinvoke>
    
    0 讨论(0)
提交回复
热议问题