Maven by Example - 5.4. Configuring the Jetty Plugin |
|
Configuring the Jetty Plugin. <project> [...] <build> <finalName>simple-webapp</finalName> <plugins> <plugin> <groupId>org.mortbay.jetty</groupId> <artifactId>maven-jetty-plugin</artifactId> </plugin> </plugins> </build> [...] </project>
Once you’ve configured the Maven Jetty Plugin in your project’s
~/examples/ch-simple-web/simple-webapp $ mvn jetty:run ... [INFO] [jetty:run] [INFO] Configuring Jetty for project: simple-webapp Maven Webapp [INFO] Webapp source directory = \ ~/svnw/sonatype/examples/ch-simple-web/simple-webapp/src/main/webapp [INFO] web.xml file = \ ~/svnw/sonatype/examples/ch-simple-web/\ simple-webapp/src/main/webapp/WEB-INF/web.xml [INFO] Classes = ~/svnw/sonatype/examples/ch-simple-web/\ simple-webapp/target/classes 2007-11-17 22:11:50.532::INFO: Logging to STDERR via org.mortbay.log.StdErrLog [INFO] Context path = /simple-webapp [INFO] Tmp directory = determined at runtime [INFO] Web defaults = org/mortbay/jetty/webapp/webdefault.xml [INFO] Web overrides = none [INFO] Webapp directory = \ ~/svnw/sonatype/examples/ch-simple-web/simple-webapp/src/main/webapp [INFO] Starting jetty 6.1.6rc1 ... 2007-11-17 22:11:50.673::INFO: jetty-6.1.6rc1 2007-11-17 22:11:50.846::INFO: No Transaction manager found 2007-11-17 22:11:51.057::INFO: Started SelectChannelConnector@0.0.0.0:8080 [INFO] Started Jetty Server WarningIf you are running the Maven Jetty Plugin on a Windows
platform you may need to move your local Maven repository to a
directory that does not contain spaces. Some readers have reported
issues on Jetty startup caused by a repository that was being stored
under After Maven starts the Jetty Servlet container, load the URL
http://localhost:8080/simple-webapp/
in a web browser. The simple Contents of src/main/webapp/index.jsp. <html> <body> <h2>Hello World!</h2> </body> </html>
In Contents of src/main/webapp/WEB-INF/web.xml. <!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN" "http://java.sun.com/dtd/web-app_2_3.dtd" > <web-app> <display-name>Archetype Created Web Application</display-name> </web-app>
|