Coldfusion 应用程序.cfc & Application.cfm 位于同一文件夹中
我正在修改已在 Coldfusion 中编码的现有 Web 应用程序。在现有代码中,大部分文件夹包含一个 Application.cfm 文件,用于设置应用程序变量。
但是,我对这些应用程序的部分修改要求我使用 Application.cfc 而不是现有的 .cfm 文件。
将这两个文件放在同一目录中是否存在任何潜在问题?或者 Coldfusion 会默认使用其中之一(还是同时运行两者?)
谢谢, 史蒂文
编辑
只是为了让更多人了解这一点。我正在集成一个新的集中式登录系统,但需要注意的是它必须有一个回退登录(以防登录系统停机)。这就是为什么我不想删除旧代码
I am modifying an existing web application which has been coded in Coldfusion. In the existing code, a large portion of the folders contain an Application.cfm file which sets the Application variables
However, part of my modification to these apps requires me to use the Application.cfc rather then the existing .cfm file.
Is there any potiential problems of having both of these files in the same directory? Or will Coldfusion default to using one over the other (or will it run both?)
Thanks,
Steven
EDIT
Just to shine some more light onto this. I am integrating a new centralized login system, but a caveat of this is that it must have a fall back login (in case of downtimne for login system). That is why i dont want to blow out the old code
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果存在 Application.cfc 文件,ColdFusion 将使用该文件。如果两者都有,Application.cfm 将被忽略。
If there is an Application.cfc file ColdFusion will use that. If you have both, Application.cfm will be ignored.