将更改从开发 APEX 应用程序迁移到生产环境?
我有 Apex 应用程序的生产副本,以及我对其进行更改并将其开发为更新版本的副本。现在我已经完成了开发和测试,是否有一种简单的方法可以将我的更改导入到生产版本?请注意,我不能简单地用我的新应用程序替换生产模型。我现在必须在生产应用程序上单独进行所有这些更改吗?
I have a production copy of an Apex app, and a copy on which I made changes and developed it into a newer version. Now that I am done developing and testing, is there an easy way to import my changes to the production version? Note that I cannot simply replace the production model with my new app. Do I have to make all those changes individually now on the production app?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
为什么不能替换整个应用程序?是否因为您在开发环境中进行了更改而不想投入生产?是否是因为自从您进行更改以来,产品中的不同页面和组件发生了其他更改?是因为您在开发中更改的相同页面和组件在产品中也发生了更改吗?
您可以在 APEX 开发环境中以非常细粒度的级别导出各个页面和各个组件。有关于导出 APEX 应用程序的各个组件 适用于您使用的任何版本的 APEX 的《APEX 应用程序生成器用户指南》。当然,这要求您识别已更改的页面和组件。不过,APEX 应用程序生成器界面将向您显示上次修改页面或组件的各种报告,这将使该过程更简单。
Why can't you replace the entire app? Is it because you've made changes in the development environment that you don't want to go to production? Is it because there have been other changes to different pages and components in prod since you made your changes? Is it because there have been changes to the same pages and components in prod that you've changed in dev?
You can export individual pages and individual components at a very granular level in the APEX development environment. There is documentation for exporting individual components of an APEX application in the APEX Application Builder User's Guide for whatever version of APEX you're using. Of course, that requires that you identify the pages and components you've changed. The APEX Application Builder interface, though, will show you various reports of the last time pages or components were modified which should make that process simpler.