编写 Websphere 7 RAD 脚本
我们需要准备 EAR 的一部分以进行部署,通常通过将其加载到 RAD 中、右键单击 EJB 并选择“准备部署”选项来完成此操作。 然后我们导出 EAR。
是否有 IBM RAD 7 应用程序的脚本接口或从命令行运行准备,以便我们不必手动执行这些步骤?
We need to prepare part of our EAR for deployment, we usually do this by loading it into the RAD, right clicking on the EJB and selected "Prepare for deployment" option. Then we export the EAR.
Is there a scripting interface to the IBM RAD 7 application or running the prepare from the command line so we don't have to manually go through the steps?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用 ejbdeploy 命令生成部署代码。 它与 RAD 和 WAS 捆绑在一起。
请参阅 WAS 信息中心的“从命令行生成 EJB 部署代码”。
You can use the ejbdeploy command to generate the deployment code. It's bundled with both RAD and WAS.
See "Generating EJB deployment code from the command line" at the WAS infocenter.
您可以使用 RAD 的捆绑
ejbDeploy
Ant 任务,如下所述:http://publib.boulder.ibm.com/infocenter/radhelp/v7r0m0/topic/com.ibm.etools.ant.tasks.doc/ topic/tantejbd.html这最终运行与“准备部署”完全相同的功能,只是它在无头(非 GUI)模式下执行。
(对于 RAD 8.0 及更高版本,请在封闭的 EAR 上使用
prepForDeploy
任务:http://publib.boulder.ibm.com/infocenter/radhelp/v8/topic/com.ibm.ant.tasks.doc/主题/tpreparefordeploy.html)You can use RAD's bundled
ejbDeploy
Ant task, described here: http://publib.boulder.ibm.com/infocenter/radhelp/v7r0m0/topic/com.ibm.etools.ant.tasks.doc/topics/tantejbd.htmlThis ends up running exactly the same functionality as "Prepare for deployment", only that it does it in a headless (non-GUI) mode.
(For RAD 8.0 and later, use the
prepForDeploy
task on the enclosing EAR: http://publib.boulder.ibm.com/infocenter/radhelp/v8/topic/com.ibm.ant.tasks.doc/topics/tpreparefordeploy.html)