Eclipse中的EJB V3.0数据库持久化 - 编程入门网
s="compile">
<jar jarfile="${build.dir}/${ant.project.name}.jar">
<fileset dir="${build.classes.dir}">
<include name="**/*.class" />
</fileset>
<fileset dir="${src.resources}/">
<include name="META-INF/persistence.xml" />
</fileset>
</jar>
</target>
<target name="war" depends="jar">
<war warfile="${build.dir}/websphere.war">
<fileset dir="webModule">
<include name="*.jsp" />
</fileset>
<fileset dir="webModule">
<include name="WEB-INF/web.xml" />
</fileset>
</war>
</target>
<target name="assemble-app" depends="war">
<jar jarfile="${build.dir}/${ant.project.name}.ear">
<metainf dir="META-INF">
<include name="application.xml" />
</metainf>
<fileset dir="${build.dir}" includes="*.jar,*.war" />
</jar>
</target>
<target name="deploy" depends="assemble-app">
<copy file="${build.dir}/${ant.project.name}.ear" todir="${deploy.dir}" />
</target>
<target name="clean">
<delete file="${build.dir}/${ant.project.name}.ear" />
<delete file="${build.dir}/${ant.project.name}.jar" />
<delete file="${build.dir}/websphere.war" />
</target>
</project>
Eclipse中的EJB V3.0数据库持久化(14)时间:2011-10-16 IBM Deepak Vohra在 Eclipse 中运行编译脚本。在 Package Explorer中,右键单击 build.xml > Run As > Ant Build,如图 16 所示。 图 16. 运行 build.xml 编译脚本中的默认编译目标是 deploy,而每一个目标都依赖于之前一个目标。在 prepare、compile 、jar、war、assemble-app 和 deploy 目标运行后,所产生的 EAR 文件 ejb3.ear 会被部署到 WebSphere 服务器上,如图 17 所示。 图 17. 运行 build.xml Eclipse中的EJB V3.0数据库持久化(15)时间:2011-10-16 IBM Deepak Vohra在 WebSphere Application Server 上安装 EJB V3.0 在 Administrative Console 上,单击 Applications > New Application。在 New Application 标题上,单击 New Enterprise Application。指定 ejb3.ear 文件的路径,然后单击 Next,如图 18 所 示。 图 18. 指定要安装的 EAR 文件 在 “How do you want to install the application” 选项中,选择 Detailed > Next。对于 “Select installation options header” 选项,单击复选框 Precompile JavaServer Pages files 和 Deploy enterprise beans。指定安装应用程序的目录为 “C:\Program Files\IBM\WebSphere\AppServer\profiles\AppSrv01\installedApps\dvohra09- PCNode01Cell” (Windows 环境中),然后单击 Next,如图 19 所示。安装路径的 scope 目录可能会与本例不同。 图 19. 指定安装选项 在 “ |
凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢! |