.WAR
Web Application Resource
A
Web Application Resourceis a single file container that holds all the potential files necessary for a Java-based web application.It can have Java Archives (
.jar), Java Server Pages (.jsp), JavaServlets, Java classes, webpages,css, etc.The
/WEB-INFdirectory inside the archive is a special one, with a file namedweb.xmlwhich defines the structure of the application.
WAR files are basically ZIP files:
head -c 16 filename.war | xxdLast updated