I have java sdk 1.7. I’ve always used django/python for web development, this will be the first time I use java.
When I tried:
import javax.servlet.http.*;
servlet is not found? How do I properly install this servlet jar?
EDIT:
I am developing some small stuff for google app engine using java.
“javax.servlet.*” and friends come with whatever servlet container you’re using. Tomcat uses j2ee.jar or servlet.jar (IIRC), WebSphere uses a different .jar, etc.
You’re using Google App Engine.
That means you need to use the Google .jar files.
Here’s the documentation: