ROOT.war replaces Tomcat's default ROOT application - $TOMCAT_HOME/webapps/ROOT
-
Install and use JDK
sdk install java 25.0.1-tem sdk use java 25.0.1-tem
-
Install Apache Maven 3.9.11
sdk install maven 3.9.11 sdk use maven 3.9.11
git clone git@github.com:AndriyKalashnykov/tomcat-root-war.git
cd tomcat-root-war
mvn clean package jetty:run
xdg-open http://localhost:8080/index.htmlAccess http://localhost:8080/index.html or see Tomcat ROOT WAR Web Application UI
git clone git@github.com:AndriyKalashnykov/tomcat-root-war.git
cd tomcat-root-war
mvn clean installmvn clean install -Daether.connector.https.securityMode=insecure -Dmaven.wagon.http.ssl.insecure=true -Dmaven.wagon.http.ssl.allowall=true -Dmaven.wagon.http.ssl.ignore.validity.dates=truejar tf ./target/ROOT.warEdit $TOMCAT_HOME/conf/server.xml: autoDeploy and deployOnStartUp needs to be set to false
<Host name="localhost" appBase="webapps" unpackWARs="true" autoDeploy="false" deployOnStartUp="false">Remove default ROOT folder and copy ROOT.war
rm -rf $TOMCAT_HOME/webapps/ROOT/
rm -f $TOMCAT_HOME/webapps/ROOT.war
cp ./target/ROOT.war $TOMCAT_HOME/webapps/ROOT.warDefault welcome page - http://localhost:8080/

JSP - http://localhost:8080/index.jsp

Servlet - http://localhost:8080/infoservlet

