Hello,
I'm new on Jboss - maybe someone can help me. How (or) is it possible,
to deploy a webaplication on jboss without a war file? It just takes to
long during development process.
Thx for any answers
Greetings
Holger
Alan Krueger - 17 Jan 2006 13:41 GMT
> I'm new on Jboss - maybe someone can help me. How (or) is it possible,
> to deploy a webaplication on jboss without a war file? It just takes to
> long during development process.
Using Ant, creating a war file is as simple as adding a <war> task to
your build.xml
http://ant.apache.org/manual/CoreTasks/war.html
Paulus de Boska - 17 Jan 2006 21:56 GMT
You don't need a WAR-file for testing. If you name a directory
something.war and take care it has the structure required, WEB-INF and
all, you can copy that directory to a JBoss deploy directory. Saves
time. Oh, and the URL will then be
......./something/test.jsp
f.e.
For redeploying it's best to remove the war-directory first, before
copying again.
---
Paul Hamaker, SEMM
http://javalessons.com
HalcyonWild - 19 Jan 2006 15:22 GMT
> Hello,
>
[quoted text clipped - 7 lines]
>
> Holger
I can tell you for sun j2ee sdk. Its pretty much simple. Place your
files in a folder, and also the Web inf folder under that. Using admin
tool, you can just tell Sun Server the path of your folder, and it does
everything automatically for you. Try it out. If you are using it for
testing, its much faster.