• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Ron McLeod
  • Paul Clapham
  • Devaka Cooray
  • Liutauras Vilda
Sheriffs:
  • Jeanne Boyarsky
  • paul wheaton
  • Henry Wong
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Tim Moores
  • Carey Brown
  • Mikalai Zaikin
Bartenders:
  • Lou Hamers
  • Piet Souris
  • Frits Walraven

how to deploy vaj apllication on a tomcat server

 
Greenhorn
Posts: 1
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
i have a application deveploped on vaj but now i want to deploy it on tomcat server.
please could anyone help me in doing that
 
author
Posts: 422
13
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
By "vaj", I assume that you mean VisualAge for Java...
Firstly, no matter what IDE you use, you should probably never rely on the IDE to do your build. Use Ant or Maven to do your build, but don't use the IDE's build facility. (Of course, if your IDE supports Ant builds, then that's okay--but in this case, VAJ doesn't support Ant builds, so don't use VAJ to do your build.)
The problem with VAJ is that it doesn't keep real file artifacts for the stuff it builds. To get real files (which you need for Ant) you have to export stuff, which introduces a manual step that I don't like dealing with.
I recommend getting away from VAJ and to use an IDE that keeps real files. I recommend that you switch to Eclipse because it is very similar to VAJ. But if you insist on using VAJ, then you must export your files, then use Ant to do your builds.
Once you've got Ant or Maven doing your builds, deploying to Tomcat (or any other server) is a snap. Just compile your code, WAR it up, then copy the WAR file to Tomcat's webapp directory.
 
We begin by testing your absorbancy by exposing you to this tiny ad:
We need your help - Coderanch server fundraiser
https://coderanch.com/wiki/782867/Coderanch-server-fundraiser
reply
    Bookmark Topic Watch Topic
  • New Topic