Tuesday, April 10, 2012

Web Server V/S Application Server

http://www.javaworld.com/javaworld/javaqa/2002-08/01-qa-0823-appvswebserver.html

Tomcat, or officially named Apache Tomcat is a light-weight web container used for deploying and running web application based on Java

Web Server handles HTTP requests.It responds with static pages like HTML pages and can use other programs such as JSP,servlets,CGI,ASP etc to generate dynamic response.

Application Sever handles business logic for use by client applications and supports various protocols including HTTP.

No comments:

Post a Comment

SpringBoot Application Event Listeners

When a spring boot application starts few events occurs in below order ApplicationStartingEvent ApplicationEnvironmentPreparedEvent Applicat...