after i created a java web application in netbeans i encounter class like
javax.ser开发者_运维技巧vlet.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?
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.
See the Java EE 6 SDK and Java EE 6 Web Profile SDK Docs & Resources page and, more specifically:
Developer Resources
- Java EE 6 Samples
- Java EE 6 Technologies
- API Documentation
- The Java EE 6 Tutorial, Volume 1: Basic Concepts - HTML
- The Java EE 6 Tutorial: Basic Concepts and Advanced Topics (login or registration required) - PDF
- Your First Cup: An Introduction to the Java EE Platform
The third link is what you're looking for.
PS: No offense but I think that you should spend some time browsing the Sun website and learn to find information by yourself. It's not that hard to find things there and it's offering very interesting resources.
精彩评论