Results 1 to 4 of 4

Thread: What's required for JSP?

  1. #1
    Senior Member
    Join Date
    Feb 2002
    Posts
    170

    What's required for JSP?

    I went to java.sun.com to check but I didn't get any smarter. JDK, Java 2 SDK, J2RE, J2EE and so on in in absurdum.

    I just wanna play around a bit with JSP on Apache. Can anyone tell me what I need?

    Thanks,
    Mankan

    \"The purpose of abstraction is not to be vague, but to create a new semantic level in which one can be absolutely precise.\"
    - Edsger Dijkstra

  2. #2
    Senior Member
    Join Date
    Sep 2001
    Posts
    429
    try Allaire JRUN (it's got some useful bit and a evaluation download)


    J.
    [glowpurple]manually editing your config files can break them. If this happens, you get to keep both pieces. [/glowpurple]

  3. #3
    Antionline Herpetologist
    Join Date
    Aug 2001
    Posts
    1,165

    Thumbs up

    Here's the bare minimum you need to run a JSP development environment:
    For compilation:
    1) The Sun Java 2 Software Development Kit (J2SDK) (1.3 or 1.4)
    2) The Sun Java Servlet Development Kit (JSDK) (2.1 or 2.2)
    Both these can be found at http://java.sun.com

    To run a JSP, you need a JSP container/server that has a Java Virtual Machine. Good Bets are:
    1) Tomcat: http://jakarta.apache.org/tomcat
    It's free, it's flexible and has XML based configuration files but can be a pain to set up and configure.
    2) BEA Weblogic: http://bea.com
    In my opinion, the best commercial JSP container/server out there. Built on top of Tomcat and Apache. Stable and has XML based config files.
    3) Sun Java Web Server: http://java.sun.com
    Decent server. Limited to 50 simultaneous connections. Good development platform.

    Besides these, to develop JSP's you need a working knowledge of both core Java and Java Servlets.
    Cheers,
    cgkanchi

  4. #4
    Senior Member
    Join Date
    Jan 2002
    Posts
    1,207

    Cool

    If you want to try development with JSP, get Tomcat, that is the easiest way (go to jakarta.apache.org and follow the instructions)

    If you want to do development on a non-internet box, it is fine.

    If you want to host production sites on it then you probably want to either combine it with another web server (e.g. Apache), tune it up and secure it, or preferably both.

    Anyway get it, run it, and JSP will work out of the box

    Cheers
    Slarty

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •