• 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

what is tomcat's relation with jsp

 
Greenhorn
Posts: 27
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
hello,
what is tomcat's relation with jsp. can any other webserver run, jsp, in short what are the requirement to run jsp. I have a project comming in jsp and servlet , using websphere and something called "MQ" can, also give me some insight on MQ, please suggest a good book for jsp and servlets
thanks.
 
Ranch Hand
Posts: 18944
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Tomcat is the name of the WEB server developed by Apache Group (Developers for Apache Web server). Tomcat in specific is a WEB server which implements SUN Microsystem's Java specifications for JSP as well as servlets. You can also contribute for the development of Tomcat. Pls.visit www.apache.org for more information on the Tomcat server. Alternatively, you'll find information on Java web site also.
download jswdk (jsp,servlet development kit) from java.sun.com. That's good for beginners. This comes with a set of examples to start with.
 
Sheriff
Posts: 7001
6
Eclipse IDE Python C++ Debian Java Linux
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
A lot of webservers can compile and run JSP files; there are several "jsp engines" which can plug in to the well-known servers. Many new web servers, especially ones written in Java or designed for servlet support, come with JSP support "out of the box".
Tomcat is the reference platform for servlet and JSP development. It has been produced by the Apache Group based on source code supplied by Sun and is designed to be regarded as the definitive implementation of servlets and JSP.
That doesn't make it necessarily the best for your use, though. I use Resin from http://www.caucho.com which seems to be easier to install and faster in operation. Many people also have good things to say about JRun and ServletExec, as well as many others.
[This message has been edited by Frank Carver (edited August 26, 2000).]
 
tinks
Greenhorn
Posts: 27
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
frank could please suggest me book for jsp as we are having a huge project regarding jsp and servlets and I have to learn jsp.
thanks
 
Frank Carver
Sheriff
Posts: 7001
6
Eclipse IDE Python C++ Debian Java Linux
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I use the Wrox "Professional JSP" book (second right at the top of the Servlets/JSP forum) at the moment. It's big, but still very useful. I haven't looked at any others, though.
 
reply
    Bookmark Topic Watch Topic
  • New Topic