Link to home
Start Free TrialLog in
Avatar of Kennywen
Kennywen

asked on

Newbie in JSP

I'm really new to JSP so that i want to know where can i learn the JSP? is't JSP is very different from JAVA? Any useful JSP tutorial, articles, example and etc links?
ASKER CERTIFIED SOLUTION
Avatar of jimmack
jimmack

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of jimmack
jimmack

You should probably download an install Tomcat too :-)

http://jakarta.apache.org/tomcat/index.html
Avatar of Kennywen

ASKER

What is servlet? Is't the servlet is come with J2EE? Should i install J2EE in order to run JSP or i just need to install Tomcat? Currently i'm using J2SE.
A servlet is a Java program that uses the facilities provided by a "servlet container".  A servlet container (eg. Tomcat) is like a web server, but it deals with dynamic content.

You don't need to install J2EE in order to run Tomcat.  Tomcat just requires J2SE.
That mean i can use J2SE with tomcat to run JSP? Is't i must have servlet in order to run JSP? Seems like servlet is like JVM?
Where should i put the JSP file in order to run it?
Follow the links for the tutorials that I posted earlier.

Yes, you only need J2SE and Tomcat in order to get JSPs and Servlets working.

The servlet container will actually convert a JSP into a servlet and compile it when it is first accessed.
SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial