servlet
n. (Computers) small application program that runs on a server (similar to an applet) | ||||
Search Dictionary:
Servlet definition was found in categories: Computer & Internet(4) Encyclopedia(1)
Servlet Definition from Computer & Internet Dictionaries & Glossaries
| FOLDOC |
| Internet Glossary |
Servlet
An applet that runs on a server. The term usually refers to a Java applet that runs within a Web server environment. This is analogous to a Java applet that runs within a Web browser environment.
Java servlets are becoming increasingly popular as an alternative to CGI programs. The biggest difference between the two is that a Java applet is persistent. This means that once it is started, it stays in memory and can fulfill multiple requests. In contrast, a CGI program disappears once it has fulfilled a request. The persistence of Java applets makes them faster because there's no wasted time in setting up and tearing down the process.
An applet that runs on a server. The term usually refers to a Java applet that runs within a Web server environment. This is analogous to a Java applet that runs within a Web browser environment.
Java servlets are becoming increasingly popular as an alternative to CGI programs. The biggest difference between the two is that a Java applet is persistent. This means that once it is started, it stays in memory and can fulfill multiple requests. In contrast, a CGI program disappears once it has fulfilled a request. The persistence of Java applets makes them faster because there's no wasted time in setting up and tearing down the process.
| JAVA (2EE-ENglos) ACRONIMS |
servlet
A Java program that extends the functionality of a web server, generating dynamic content and interacting with web clients using a request-response paradigm.
A Java program that extends the functionality of a web server, generating dynamic content and interacting with web clients using a request-response paradigm.
| Noman's Java(TM) Glossary |
servlet
A Java program that extends the functionality of a Web server, generating dynamic content and interacting with Web clients using a request-response paradigm.
Also see servlet container , servlet container (distributed) , servlet context , and servlet mapping .
A Java program that extends the functionality of a Web server, generating dynamic content and interacting with Web clients using a request-response paradigm.
Also see servlet container , servlet container (distributed) , servlet context , and servlet mapping .
Servlet Definition from Encyclopedia Dictionaries & Glossaries
| Wikipedia English - The Free Encyclopedia |
Java Servlet
The Java Servlet API allows a software developer to add dynamic content to a Web server using the Java platform. The generated content is commonly HTML, but may be other data such as XML. Servlets are the Java counterpart to non-Java dynamic Web content technologies such as PHP, CGI and ASP.NET. Servlets can maintain state across many server transactions by using HTTP cookies, session variables or URL rewriting.
| See more at Wikipedia.org... |
