• 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
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

new application in tomcat4.0

 
Ranch Hand
Posts: 445
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
How do i create a new application in tomcat so that i can access it using
http://localhost/myapp or
http://myapp
If anyone has the solution plz let me know quickly as i am in dire straits.
 
author and deputy
Posts: 3150
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
In conf/server.xml add this
<Context path="/myapps"
docBase="webapps/myapps"
crossContext="false"
debug="0"
reloadable="true" >
</Context>
In tomcat under webapps directory create directorys
1.webapps\myapps\
2. webapps\myapps\web-inf\
3.webapps\myapps\web-inf\classes\
4.webapps\myapps\meta-inf

Check examples folder for better replication.Read docs for more understanding and modification.
 
Consider Paul's rocket mass heater.
reply
    Bookmark Topic Watch Topic
  • New Topic