• 软件测试技术
  • 软件测试博客
  • 软件测试视频
  • 开源软件测试技术
  • 软件测试论坛
  • 软件测试沙龙
  • 软件测试资料下载
  • 软件测试杂志
  • 软件测试人才招聘
    暂时没有公告

字号: | 推荐给好友 上一篇 | 下一篇

使用 Ant 自动生成项目构建版本

发布: 2008-6-19 18:03 | 作者: 不详 | 来源: 测试时代编辑整理 | 查看: 182次 | 进入软件测试论坛讨论

领测软件测试网


对于其他项目类型,可以使用 warExportejbExportjar 任务(分别用于导出 Web 模块、EnterpriseJavaBeans (EJB) 模块和 Java 库)。这些都是 SDP 提供的 Ant 任务。

  • 部署到目标服务器

    在此步骤中,我们将部署上一步导出的单元。对于我们的自动化过程,我们将使用包装 wsadmin 的内置 Ant 任务。清单 10 显示了 wsListAppswsUninstallAppwsInstallApp Ant 任务,这些任务分别提供用于列出已安装应用程序、卸载企业应用程序和安装企业应用程序的管理功能。请记得在运行此步骤前启动目标应用服务器。

    关于 wsadmin 和 Ant
    WebSphere Application Server Ant 支持基于其命令行管理工具 wsadmin。作为本文示例的替代方法,可以使用 Exec Ant 任务调用 wsadmin 并按照调用任何其他库执行文件的方式传递程序参数。WebSphere Application Server 还提供了包装 wsadmin 的 Ant 任务 WsAdmin。还有其他包装特定操作的 WsAdmin 任务的 Ant 任务,如应用程序安装方面的 InstallApplication 和 StartApplication。我们的示例中使用了后一个选项。



    清单 10. 管理企业应用程序
                            
    <target name="listapps" description="List installed Enterprise Applications">
    <!-- Define the wsListApps task that lists installed Enterprise Applications. -->
    <taskdef name="wsListApps" classname="com.ibm.websphere.ant.tasks.ListApplications">
    <!-- Include all JAR files under WebSphere Application Server lib directory. -->
    <classpath>
    <fileset dir="${was.home}/lib/" includes="*.jar" />
    </classpath>
    </taskdef>
    <!-- List all installed Enterprise Application the profile specified. -->
    <wsListApps profilename="${was.profilename}" wasHome="${was.home}/" conntype="SOAP"
       host="${was.hostname}" port="${was.hostport}" user="${was.username}" 
        password="${was.userpassword}" />
    </target>
    <target name="uninstallapp" depends="listapps" 
    description="Uninstall an Enterprise Application"> <!-- Define the wsUninstallApp task that uninstalls an Enterprise Application. --> <taskdef name="wsUninstallApp"
    classname="com.ibm.websphere.ant.tasks.UninstallApplication"> <!-- Include all JAR files under WebSphere Application Server lib directory. --> <classpath> <fileset dir="${was.home}/lib/" includes="*.jar" /> </classpath> </taskdef> <!-- Uninstall an Enterprise Application under the profile specified. --> <wsUninstallApp profilename="${was.profilename}" wasHome="${was.home}/" application="${project.name}" conntype="SOAP" host="${was.hostname}"
    port="${was.hostport}"

    延伸阅读

    文章来源于领测软件测试网 https://www.ltesting.net/


    关于领测软件测试网 | 领测软件测试网合作伙伴 | 广告服务 | 投稿指南 | 联系我们 | 网站地图 | 友情链接
    版权所有(C) 2003-2010 TestAge(领测软件测试网)|领测国际科技(北京)有限公司|软件测试工程师培训网 All Rights Reserved
    北京市海淀区中关村南大街9号北京理工科技大厦1402室 京ICP备10010545号-5
    技术支持和业务联系:info@testage.com.cn 电话:010-51297073

    软件测试 | 领测国际ISTQBISTQB官网TMMiTMMi认证国际软件测试工程师认证领测软件测试网