I'm trying to get to grips with Spring but it's getting quite frustrating considering that after 3 days I still haven't managed to run a simple Hello World! example.
So I downloaded the code from spring's showcase repository (https://github.com/spring-projects/spring-mvc-showcase). Next I imported it into Eclipse as a Maven project. Clicked on "run on server" and selected Tomcat7 but all I got was a "404:The requested resource is not available" error.
I also get 2 errors in my pom.xml file:
Plugin execution not covered by lifecycle configuration: org.codehaus.mojo:aspectj-maven-plugin:1.2:compile (execution: default, phase: process-sources)
and
Plugin execution not covered by lifecycle configuration: org.codehaus.mojo:aspectj-maven-plugin:1.2:test-compile (execution: default, phase: process-test-sources)
What am I doing wrong?