• 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

creation of setup for jsp project

 
Greenhorn
Posts: 4
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
hello all..please help me out.i want to create set up of a project based on JSP.please tell me which of the tool is required for this and steps for this.
 
Sheriff
Posts: 67746
173
Mac Mac OS X IntelliJ IDE jQuery TypeScript Java iOS
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
To begin, you'll need a server that can support servlets and JSP. Tomcat is a popular and free choice.

Once you have Tomcat all set up, you can find any of the many tutorials on JSP that are on the web and start working your way through.
[ July 03, 2008: Message edited by: Bear Bibeault ]
 
neeni maur
Greenhorn
Posts: 4
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
thank you.but mstill i am confused.I have TOMCAT and the project is running very well.
But suppose i want to give it some other person to installing and running it in its PC.for that i have to create a setup for this softwares (like setup of 'JDK' and some other softwares).
So how would i create it???

please send responce soon....
 
Bear Bibeault
Sheriff
Posts: 67746
173
Mac Mac OS X IntelliJ IDE jQuery TypeScript Java iOS
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Are you talking about an installer? There's no need for an installer for a web app.

To deploy a web app, the easiest way would be to create a .war file and ship it off. The person on the receiving end can simply drop it into their own Tomcat (or other container) for deployment.
 
neeni maur
Greenhorn
Posts: 4
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
thank you.

reply
    Bookmark Topic Watch Topic
  • New Topic