What is the difference between a .jar and a .war file? Is it only the file extension or is there something more?
|
|
|
From Java Tips: Difference between ear jar and war files
Official Sun/Oracle descriptions: Wikipedia articles: |
||||
|
|
(source) So a .war is a .jar, but it contains web application components and is laid out according to a specific structure. A .war is designed to be deployed to a web application server such as Tomcat or Jetty or a Java EE server such as JBoss or Glassfish. |
|||
|
|
|
A |
|||
|
|
|
war and jar are archives for java files. war is web archive and they are running on web server. jar is java archive. |
|||
|
|
|
A |
|||
|
|
|
A war file is a special jar file that is used to package a web application to make it easy to deploy it on an application server. The content of the war file must follow a defined structure. |
|||
|
|
|
.jar and .war are both zipped archived files. Both can have the optional META-INF/MANIFEST.MF manifest file which hold informative information like versioning, and instructional attributes like classpath and main-class for the JVM that will execute it. .war file - Web Application Archive intended to be execute inside a 'Servlet Container' and may include other jar files (at WEB-INF/lib directory) compiled classes (at WEB-INF/classes (servlet goes there too)) .jsp files images, files etc. All WAR content that is there in order to create a self-contained module. |
|||
|
|
|
Basicly both compressed archives. war is used for web application with a specific directory structure. |
|||
|
|