您的位置:首页 >> 编程开发 >> Java >> JBoss >> 正文
JBoss RSS
 

通过ant+jBoss学习MasteringEJB,部署HelloWorld

http://www.rdxx.com 03年03月31日 12:12 Blog 我要投稿

关键词: MasteringEJB , JBoss , 学习 , Ant , NT , JB , master

所需的软件

antj2sdk,j2ee.

我的环境变量设置(我定义在用户变量中):

J2EE_HOME=f:\j2sdkee1.3.1  JAVA_HOME=f:\j2sdk1.4.1_01 JBOSS_HOME=f:\jboss

Path=.;f:\j2sdk1.4.1_01\bin;f:\j2sdkee1.3.1\bin;f:\ant1.5.2\bin

CLASSPATH=.;f:\j2sdk1.4.1_01\lib\dt.jar;f:\j2sdk1.4.1_01\lib\tools.jar;f:\j2sdkee1.3.1\lib\j2ee.jar

我的模板项目的结构和文件内容,便于以后拷贝。

 

build.xml

<?xml version="1.0"?>

 

<!-- ======================================================================= -->

<!-- Template build file                                                                               -->

<!-- ======================================================================= -->

 

<project name="template" default="main" basedir=".">

  

   <!--

      Give user a chance to override without editing this file

      (and without typing -D each time they run it)

   -->

   <property file=".ant.properties" />

   <property file="${user.home}/.ant.properties" />

  

   <property name="Name" value="Template"/>

   <property name="version" value="1.1"/>

  

   <target name="check-jboss" unless="jboss.home">

      <fail>

         Property "jboss.home" is not set. Please use the file

         ".ant.properties" in this directory ${basedir} to

         set this property. It must point to the directory which

         contains the following directory: "deploy", "conf", "tmp"

         etc.

      </fail>

   </target>

  

   <target name="wrong-jboss" unless="jboss.present">

      <fail>

         Property "jboss.home" is set but it does not seem

         to point to the right directory. The file "run.jar"

         must be available at ${jboss.home}/bin.

      </fail>

   </target>  

  

   <target name="check-environment">

      <antcall target="check-jboss"/>

     

9 7 3 1 2 3 4 5 6 7 4 8 :

 
 
标签: MasteringEJB , JBoss , 学习 , Ant , NT , JB , master 打印本文
 
 
  相关资讯
RSS
 
 
 
  热点搜索
 
 
 



Valid XHTML 1.0 Transitional
Copyright ©2005 - 2008 Rdxx.Com,All Rights Reserved
收藏本页
收藏本站