We currently use JBoss4.2 + embedded jboss for faster round trip development + some tests.
I want to migrate everything to JBoss 5, how do I run the JBoss 5 codebase within an embedded environment.
We currently use stuff like;
Bootstrap.getInstance().bootstrap();
...
Bootstrap.getInstance().deploy(jar);
How do I go about getting started? Is there any examples?
JBoss embedded is an extremely important part of our development kit, using JBoss 5 without it isn't an option.
AFAIK, Embedded JBoss uses the JBoss 5 codebase. Actually, I can't currently use Embedded JBoss for testing our codebase because of a few dependencies on JBoss 4.2.x, so I use the old Embedded EJB3 for testing.