How do I undeploy a maven web application from Tomcat?
Author: Deron Eriksson
Description: This tutorial describes how to undeploy a maven web application from Tomcat using the maven tomcat plugin.
Tutorial created using: Windows Vista || JDK 1.6.0_04 || Eclipse Web Tools Platform 2.0.1 (Eclipse 3.3.1) || Tomcat 6.0.14


Page: < 1 2 3 >

(Continued from page 1)

To make things easy from EclipseSW, I created an Eclipse External Tool Configuration to perform a "tomcat:undeploy" goal on a selected project.

Name:mvn tomcat~undeploy
Location:C:\dev\apache-maven-2.0.8\bin\mvn.bat
Working Directory:${project_loc}
Arguments:tomcat:undeploy

The external tool configuration is shown here:

External Tool Configuration

I selected the "mywebapp" project, which had been deployed to TomcatSW. I selected the "mvn tomcat~undeploy" external tool to execute "mvn tomcat:undeploy" on "mywebapp".

Executing 'mvn tomcat:undeploy' on 'mywebapp' project

The following console output was generated by the "mvn tomcat:undeploy".

Console output from 'mvn tomcat:undeploy'

[INFO] Scanning for projects...
[INFO] Searching repository for plugin with prefix: 'tomcat'.
[INFO] ------------------------------------------------------------------------
[INFO] Building mywebapp Maven Webapp
[INFO]    task-segment: [tomcat:undeploy]
[INFO] ------------------------------------------------------------------------
[INFO] [tomcat:undeploy]
[INFO] Undeploying application at http://192.168.1.7:8080/mywebapp
[INFO] OK - Undeployed application at context path /mywebapp
[INFO] ------------------------------------------------------------------------
[INFO] BUILD SUCCESSFUL
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 2 seconds
[INFO] Finished at: Wed Feb 06 17:48:58 PST 2008
[INFO] Final Memory: 3M/6M
[INFO] ------------------------------------------------------------------------

A quick check of my Tomcat Manager shows that the "mywebapp" web application was indeed undeployed from Tomcat.


(Continued on page 3)

Page: < 1 2 3 >