You have your directories META-INF WEB-INF jsp html
then: jar -cvf my.war META-INF WEB-INF jsp html
anil
Jianlin Chang wrote:
> How can I create a war file manually? I know I can follow
> "Developing Applications With Tomcat" and use build.xml, but that
> seems more complicated, is there a
Use jar. Assuming that you have your dir structure set up correctly, all
you have to do is jar them up, specify whatever.war as the file name,
and there you have it.
Anne
> Jianlin Chang wrote:
>
> How can I create a war file manually? I know I can follow "Developing
> Applications With Tomcat"
How can I create a war file
manually? I know I can follow "Developing Applications With Tomcat" and use
build.xml, but that seems more complicated, is there a simple way where I can
just pack everything needed (jsp, html, classed) into a war file using a single
command? Thanks.