扩展应用程序.cfc
我的网站要求用户通过 Application.cfc 中的 onRequestStart() 登录。 然后是注册文件夹,其中有一个 Application.cfc,它扩展了 ApplicationProxy.cfc,而 ApplicationProxy.cfc 又扩展了根 Application.cfc。 这样,注册文件夹不需要用户登录。
我的问题是我的开发服务器上的路径与生产服务器上的路径不同。 所以现在我的代码在开发和生产之间不同步,因为开发扩展了“clientname.components.ApplicationProxy”,而生产仅扩展了“components.ApplicationProxy”。
/Application.cfc
/components/ApplicationProxy.cfc extends Application
/Registration/Application.cfc extends ApplicationProxy
My site requires the user to be logged in via onRequestStart() in Application.cfc.
Then there is the registration folder, which has an Application.cfc that extends ApplicationProxy.cfc which extends the root Application.cfc.
This way the registration folder doesn't require the user to be logged in.
My problem is that the path on my dev server is different than the path on the production server.
So now my code is out of sync between dev and production because dev extends "clientname.components.ApplicationProxy" while production extends only "components.ApplicationProxy".
/Application.cfc
/components/ApplicationProxy.cfc extends Application
/Registration/Application.cfc extends ApplicationProxy
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
最好在多实例设置中使用 CF w/ Apache 来镜像您的开发文件夹结构,就像您的生产文件夹结构一样。
It'd be best to use CF w/ Apache in a Multi-instance setup to mirror your dev folder structure just like your production folder structure.
我很确定您可以在 CF 管理中创建映射。例如,创建一个名为 appextend 的映射,在开发中它可以指向 clientname.components,在实时中则仅指向组件。然后你可以扩展appextend.components。
另请查看这篇文章:http://corfield.org/博客/index.cfm/do/blog.entry/entry/Extending_Your_Root_Applicationcfc
I'm pretty sure you just be able to create a mapping in the CF admin. For example create a mapping called appextend, on dev it can point to clientname.components and on live just components. Then you can extend appextend.components.
Also check out this post: http://corfield.org/blog/index.cfm/do/blog.entry/entry/Extending_Your_Root_Applicationcfc