Copyright (c) 2001-2002 Dernière mise à jour (Last update):
![]() |
The JBoss Group members are writing a free "getting started" booklet that covers the 3.0 series. It is the basis for the future documentation book under development. This documentation is directly written by the authors of JBoss. If you quickly want to get started with JBoss this includes all the examples you need and a step by step approach. |
$ cd $JBOSS_DIST/bin
$ ./run.sh &
... blabla ...
13:02:23,099 INFO [Server] JBoss (MX MicroKernel) [3.0.2 Date:200208271339] Started in 1m:56s:675ms
#!/bin/shNow we can add the client JBoss libraries to the CLASSPATH:
# make Java CLASSPATH
echo We take all jars in $1
LOCAL_CLASSPATH=`echo $1/*.jar | tr ' ' ':'`
export CLASSPATH=$LOCAL_CLASSPATH:$CLASSPATH
echo CLASSPATH=$CLASSPATH
cp $HOME/src/xdoclet/lib/xdoclet.jar $ANT_HOME/libThis is one of the missing ingredients in the receipe.
source makejavacp $JBOSS_DIST/client
source makejavacp $ANT_HOME/lib
xdoclet.home=$HOME/src/xdocletAlso set the jboss.home property. Now we can make and deploy the client:
$ cd $HOME/JBoss.3.0TemplateAndExamples/templateIn the server window we have many lines ending with :
$ ant
... blabla ...
create-client:
[echo] JBoss Home on Unix: /home/jmv/binaries/jboss-3.0.2
[echo] Java Home on Unix: /usr/java/j2sdk1.4.0_01/jre
[copy] Copying 1 file to /home/jmv/binaries/JBoss.3.0TemplateAndExamples/template/build/bin
[copy] Copying 1 file to /home/jmv/binaries/JBoss.3.0TemplateAndExamples/template/build/bin
[copy] Copying 1 file to /home/jmv/binaries/JBoss.3.0TemplateAndExamples/template/build/bin
[copy] Copying 1 file to /home/jmv/binaries/JBoss.3.0TemplateAndExamples/template/build/bin
main:
BUILD SUCCESSFUL
13:19:57,403 INFO [MainDeployer] Deployed package: file:/home/jmv/binaries/jboss-3.0.2/server/default/deploy/web-client.war
$ export CLASSPATH=build/classes:$CLASSPATH
$ source build/bin/run-client.sh
New Entity Id is: 3
cd $HOME/JBoss.3.0TemplateAndExamples/cmp2Here it is not necessary to adjust the CLASSPATH as before, since the build.xml does it. But we need a second form of the JBOSS variable -;( :
$ ant -verbose -projecthelp [property] Loading Environment env. Main targets: Subtargets: build-client.jar build-ejb.jar clean cleandist compile deploy prepare setup teardown test test-gui undeploy Default target: deploySo just typing ant will deploy (and before that compile) the exemple. During deployment, the server creates successfully 4 database tables:
Copyright (c) 2001-2002 Jean-Marc Vanel. Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.1 or any later version published by the Free Software Foundation