Created
May 3, 2020 01:15
-
-
Save copley/200983b6ecdfda153b80bde4138249af to your computer and use it in GitHub Desktop.
Java Packaging
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Java Packaging | |
| • *.jar - Java ARchive - Zip file containing one or more Java class files. | |
| • *.war - Web Application aRchive - Zip file containing web application. Includes one or more jar | |
| files, Java class files, and web resources. | |
| • *.ear - Enterprise aRchive - Zip file containing one more more WAR files. | |
| • Fat JAR (aka Uber JAR) - Executable Jar containing all dependencies. (Used by Spring Boot) | |
| • Docker Container - Docker Image containing runtime environment, JVM, and Java package |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment