ColdFusion: Are there any use cases where an Application.cfm is preferable to an Application.cfc

谁说胖子不能爱 提交于 2019-12-08 20:35:23

问题


I'm in the process of upgrading a large legacy ColdFusion application that heavily utilizes Application.cfm template files instead of the newer Application.cfc files.

It seems that Application.cfc offer a cleaner more efficient solution to everything that a Application.cfm file can do.

  • An Application.cfm runs every line sequentially for every request, so it would recreate application variables on every subsequent new page query. (Can cause performance hit if many application variables loaded) The Application.cfc allows for certain truely global variables to avoid getting recreated with the onApplicationStart() and onRequestStart() method

Has anyone come across any use cases/examples(apart from the obvious time it takes to port) where Application.cfm pages are preferable to Application.cfc


回答1:


IMO, this is not "too broad" a topic. This isn't an opinion, I'd classify it as a Best Practice.

There are vast number of reasons to use the cfc over the cfm. I've been in this exact situation.

Here's a list of the common functions available in Application.cfc (I'm sure you're aware):

  • onApplicationStart()
  • onSessionStart()
  • onRequestStart()
  • onRequest()
  • onRequestEnd()
  • onSessionEnd()
  • onApplicationEnd()
  • onError()

Without getting into the details of each, having the ability to sort your code into contextual buckets like these will allow you to better manage your various variable scopes. Without these contextual triggers, you're just replying on the procedural aspects of the Application.cfm.

While both are run on every page request, only certain functions in the cfc are run. The cfm, you have code running all the time, checking conditions for when it should or should not be run.

Sticking with the cfm is certainly less risky, but if you're upgrading it, you should expect that you'll break things along the way. Adopting best practices should be part of this process.



来源:https://stackoverflow.com/questions/47444618/coldfusion-are-there-any-use-cases-where-an-application-cfm-is-preferable-to-an

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!