.WAR
Web Application Resource
A
Web Application Resource
is 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-INF
directory inside the archive is a special one, with a file namedweb.xml
which defines the structure of the application.
WAR files are basically ZIP files:
head -c 16 filename.war | xxd
Last updated