« Return to Thread: Spring Archetype

Spring Archetype

by Mike_P :: Rate this Message:

Reply to Author | View in Thread

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>

 « Return to Thread: Spring Archetype