Tomcat war deployment through manager
There is 2 ways to deploy a war:
- By pushing the target war into ${Tomcat base}/webapps
- By using the graphical tool http://localhost:8080/manager
Using manager
If you plan to use the graphical tool then you have to adjust the war file max size.
Edit:
${Tomcat base}/webapps/manager/WEB-INF/web.xml
Adjust following values ~line 54 :
<multipart-config>
<max-file-size>104857600</max-file-size>
<max-request-size>104857600</max-request-size>
<file-size-threshold>0</file-size-threshold>
</multipart-config>