after i created a java web application in netbeans i encounter class like
javax.servlet.http.HttpServletRequest.
I cant find this class in the usual SE API documentation online.
is there another API documentation for web application classes in java?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
check out the java EE javadoc here: http://java.sun.com/javaee/5/docs/api/
To elaborate, HttpServletRequest and other similar classes are part of the Java Enterprise Edition platform, so you will not find them documented in the Standard Edition (SE) Javadoc API.