Spring Archetype

View: New views
1 Messages — Rating Filter:   Alert me  

Spring Archetype

by Mike_P :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Ran into the following issue, wanted to save someone some time:

The Spring archetype available for download from the webtide site does not work as it is currently configured.

When trying to start the sample webapp, you will get an error about a missing Spring ApplicationListener.


I had to add the following dependency to the project POM file:

    <dependency>
      <groupId>org.springframework</groupId>
      <artifactId>spring-web</artifactId>
      <version>${spring.version}</version>
    </dependency>