1

Created a spring dynamic web project on Eclipse and is running fine on Tomcat and now installed WildFly 9.0.2 final release.

Server is running fine and able to see on http://localhost:8080/ saying "Welcome to WildFly 9.. Your WildFly 9 is running."

Are there any dependencies other than below to be added to pom.xml. We are facing 404 error. Also please let us know any other ways to check everything is fine or not?

<dependency>
    <groupId>org.jboss.as.plugins</groupId>
    <artifactId>jboss-as-maven-plugin</artifactId>
    <version>7.7.Final</version>
</dependency>
naXa stands with Ukraine
  • 35,493
  • 19
  • 190
  • 259
user5303259
  • 27
  • 3
  • 9

1 Answers1

1

With WildFly, you should use the wildfly-maven-plugin. And you should configure it as a plugin, not as a dependency:

<plugin>
    <groupId>org.wildfly.plugins</groupId>
    <artifactId>wildfly-maven-plugin</artifactId>
    <version>1.0.2.Final</version>
</plugin>
Harald Wellmann
  • 12,615
  • 4
  • 41
  • 63