what is the difference between Application Server and Web Server in Java? please let me know about this and have some examples from them.
Asked
Active
Viewed 4,803 times
0
-
Web server is not EJB-container. – Eng.Fouad Mar 03 '13 at 19:08
1 Answers
2
A web server isn't specific to Java. It is simply a server for hosting content accessed via HTTP/HTTPS. Examples would be Apache HTTPD and nginx.
A Java application server actually hosts and executes Java application code. Examples include servlet containers such as Apache Tomcat, Jetty, etc. and Java EE containers such as J

Michael
- 2,460
- 3
- 27
- 47