0

What's the difference between Java Servlet and core Java? Is that difficult to learn Java Servlet assuming some background in Java programming?

3
  • 4
    possible duplicate of What is the difference between JSF, Servlet and JSP? and eventually Java Web development, what skills do I need? Commented May 10, 2011 at 14:14
  • 2
    try doing a search, before you post a question! Commented May 10, 2011 at 14:20
  • Have you chosen a server that you would like to use? If all you are trying to make is a simple web application Tomcat may be pretty good to look into. However, Jetty is great for development. Commented May 10, 2011 at 14:28

2 Answers 2

2

A servlet is an interface from this package. I think you really are looking for the difference between JavaEE and core Java. Since the implementations of the JavaEE packages are written in java it should not be that difficult to learn.

This gives a fairly good and brief description of the difference between the two.

Sign up to request clarification or add additional context in comments.

Comments

2

Java Servlet programming is the use of the javax.servlet.* family of classes to provide a dynamic java-based web service. You program it using Java and they are not difficult to learn, however it's much easier to implement most functionality using JSP/JSF (which themselves are implemented using Servlets) as it's easier to edit the content.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.