This is a personal study notes of Apache Tomcat. Below are main reference material.
- YouTube Apache Tomcat Full Tutorial,owed by Alpha Brains Courses. https://www.youtube.com/watch?v=rElJIPRw5iM&t=801s
We know all apps we want to deploy should be placed in webapps
folder. Assuming preds
is the app in the following notes.
we can see it has preds
and preds.war
.
Actually preds
is the unpacked version of preds.war
. They have exactly same content.
it reveals that Tomcat support two modes of deployment:
preds.war
.preds.war
.So you can have only one of them then execute startup.sh
or startup.bat
to get app deployed.
We usually choose packed file to deploy. It’s for portability: Packed file is only one file. It’s easy to copy or transfer unlike a directory to mess around with.
Static files are like .html
, .css
, .jsp
, .js
and so on.
They are under the fisrt level folder. In below example styles.css
and ajax.xhtml
are static files.
You can also create a subdirectory of your own to place static files. It’s very common like image files placed under preds.war/assets/images/
.
WEB-INF
has three types of files. They are configuration, complied files defined by developer and archived code.
WEB-INF
, like web.xml
and faces-config.xml
in this example. Default configuration file is web.xml
. You can configure web context, welcome page and so on in this file.Compiled files defined by developers also are placed in WEB-INF
, which are under class
folder.
In this example you can see complied .java
files which are .class
files are under class
folder.
It only contains a file called MANIFEST.MF
which is used to record meta data which is description of the whole .war
file like what the .war
file have and where those files are placed.
Basically it used to make sure everything is in the right place. Just know what is used for is ok.