Doing a little research for an article about log4j configuration in Java webapps, I decided to use Maven as a sidekick. I already pointed out earlier that my favourite build tool is buildr. The reason I chose Maven is that it has archetypes and that there is a deprecated guide for using such an archetype to create a blank webapp that would be valuable for me.
installing Maven on OS X
The Maven documentation in general and the installation instructions in particular SUCK. They lack essential information as most Java documentation does. So here is a step by step guide for OS X:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | # go to the place you want to install Maven to cd ~/Library # download latest Maven version curl -O http://apache.autinity.de/maven/binaries/apache-maven-2.2.1-bin.zip # unzip the archive unzip apache-maven-2.2.1-bin.zip # add a symlink for convenience ln -s apache-maven-2.2.1 maven # add executables to the PATH echo export PATH="~/Library/maven/bin":\$PATH >> ~/.profile # open a new bash and check Maven is running mvn --version => Apache Maven 2.2.1 (r801777; 2009-08-06 21:16:01+0200) |
# go to the place you want to install Maven to cd ~/Library # download latest Maven version curl -O http://apache.autinity.de/maven/binaries/apache-maven-2.2.1-bin.zip # unzip the archive unzip apache-maven-2.2.1-bin.zip # add a symlink for convenience ln -s apache-maven-2.2.1 maven # add executables to the PATH echo export PATH="~/Library/maven/bin":\$PATH >> ~/.profile # open a new bash and check Maven is running mvn --version => Apache Maven 2.2.1 (r801777; 2009-08-06 21:16:01+0200)
creating the webapp
If Maven is running on the system, you can use the archetype to create a blank webapp:
1 2 3 4 5 6 7 8 | # go to the workspace cd ~/Documents/workspace/ # let Maven create a webapp mvn archetype:generate \ -DgroupId=de.nofail \ -DartifactId=tomcat-logging \ -Dversion=1.0.0-SNAPSHOT \ -DarchetypeArtifactId=maven-archetype-webapp |
# go to the workspace cd ~/Documents/workspace/ # let Maven create a webapp mvn archetype:generate \ -DgroupId=de.nofail \ -DartifactId=tomcat-logging \ -Dversion=1.0.0-SNAPSHOT \ -DarchetypeArtifactId=maven-archetype-webapp
This takes several minutes, as it requires a thousand some broken dependencies for whatever is necessary to create some files and folders! But after that, you have a fresh, apache conform webapp at hand:
1 2 3 4 | # go to the webapp cd tomcat-logging/ # let Maven create a distributable war mvn clean package |
# go to the webapp cd tomcat-logging/ # let Maven create a distributable war mvn clean package
This is very nice for a Java application! Zero configuration and you get a running webapp that you can start after another two thousand downloads instantly from the command line:
1 2 | mvn jetty:run & open http://localhost:8080/tomcat-logging/ |
mvn jetty:run & open http://localhost:8080/tomcat-logging/
all by myself
There is just one big problem with this so far: it won’t work bejond that! Maven lacks sensible defaults everywhere! Examples? Here you go:
Java compiler
Maven uses Java 1.4 as the default compliance level for the Java compiler. So if you start adding some Annotations or Generics to your code, which are Java 1.5 features, your build will fail until configuring the compiler plugin properly:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | [...] <build> <plugins> [...] <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>2.0.2</version> <configuration> <source>1.6</source> <target>1.6</target> </configuration> </plugin> [...] </plugins> </build> [...] |
[...] <build> <plugins> [...] <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>2.0.2</version> <configuration> <source>1.6</source> <target>1.6</target> </configuration> </plugin> [...] </plugins> </build> [...]
This should be a top level configuration!
Jetty plugin
Making changes to the code won’t change anything in the webapp run by the Jetty plugin. You need to configure the plugin in order to pick up changes. Since the plugin can not do any hot code replacement, it has to restart the context after every change. A no-go for most webapps:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | [...] <build> <plugins> [...] <plugin> <groupId>org.mortbay.jetty</groupId> <artifactId>maven-jetty-plugin</artifactId> <version>6.1.10</version> <configuration> <scanIntervalSeconds>10</scanIntervalSeconds> </configuration> </plugin> [...] </plugins> </build> [...] |
[...] <build> <plugins> [...] <plugin> <groupId>org.mortbay.jetty</groupId> <artifactId>maven-jetty-plugin</artifactId> <version>6.1.10</version> <configuration> <scanIntervalSeconds>10</scanIntervalSeconds> </configuration> </plugin> [...] </plugins> </build> [...]
Why is this soooo much XML?
Eclipse integration
Maven has support for integrating a project into Eclipse via the Maven-Eclipse-Plugin:
1 2 3 4 | # configure your workspace (do not use ~ to point to your home!) mvn eclipse:configure-workspace -Declipse.workspace=../ # create Eclipse files mvn eclipse:eclipse |
# configure your workspace (do not use ~ to point to your home!) mvn eclipse:configure-workspace -Declipse.workspace=../ # create Eclipse files mvn eclipse:eclipse
These tasks add a M2_REPO classpath variable to your Eclipse environment that points to your local Maven repository and creates a .project and .classpath file from the existing pom. Just import the project with Import > General > Existing Projects into Workspace and your done.
better with Eclipse plugins
Since there are mature Eclipse plugins for Maven and Jetty, you should consider installing these from their update sites:
It’s never easy doing stuff from scratch, but Maven should help flatten the rocky path to Java projects. Instead it piles up another Mount Everest of complexity to climb for a Java developer…
additional information
Check out my github profile for a working example project that was created using these steps.
Maven – development for morons made easy!










Pingback: Tweets die Creating a Maven webapp from scratch | #nofail erwähnt -- Topsy.com
You can also use:
mvn eclipse:eclipse -Dwtpversion=2.0
This will generate a WTP project for your webapp.
Pingback: TapaGeuR » ITGIF – “IT-God” It’s Friday #15
Pingback: taming webapp logging with log4j | #nofail
Pingback: Create a Maven webapp from scratch - Maven Tutorial