What are JAR, WAR and EAR files?

What are JAR, WAR and EAR files?

ParameterJARWAREAR
File nameJava Archive File.Web Archive File.Enterprise Archive File.
FunctionsUsed to package classes and property files.Used to package a web application.Used to package EJB, JSP, Servlets etc.
Extension.jar.war.ear
Files containEnterprise Java Beans(EJB) class files and EJB deployment descriptor.Servlet class files, JSP files, supporting files, GIF and HTML.All files of JAR and WAR.
Significance of Classpath environment variables
Significance of Classpath environment variables - It is the list of directories which is used by JVM to find a class.....
What is a Garbage collector?
What is a Garbage collector? - Garbage collector cleans up objects which are no longer used. It is the thread running as part of JVM......
What is Interning?
What is Interning? - Interning is the process of converting duplicated strings to shared ones. Interned Strings avoid duplicate......
Post your comment