Using Embedded JBoss
This project is built using Ant and the build.xml file included in the tomcat directory. There are a number ways to deploy things in Embedded JBoss. There are different Ant tasks and Java files that represent some of those different ways:
- run.classpath.deploy target runs the ClasspathDeploy class. This class uses Bootstrap.scanClasspath() method to deploy the example EJBs and persistence units.
- run.jar target runs the DeployJarFromResourceBase class. This class uses the Bootstrap.deployBaseResource method to deploy the example EJBs.
- NOT WORKING run.virtual target runs the VirtualArchiveDeploy class. This class uses the VFS to create a virtual archive that you can deploy.
- NOT WORKING run.virtual2 target runs the VirtualArchiveDeploy2 class. This class shows a different way of using the VFS to create a virtual archive that you can deploy.