DATA MANAGEMENT RESEARCH

How to add a Spring project to Tomcat configuration using Eclipse IDE, so that Tomcat will load the index page from web.xml

Add a plugin configuration to your pom.xml <build> … <plugins> … <plugin> <groupId>org.apache.tomcat.maven</groupId> <artifactId>tomcat7-maven-plugin</artifactId> <version>2.2</version> <configuration> <url>www.url.org:1234/manager/text</url&gt; <!– for ex: url>localhost:8080/manager/text</url –> <path>/myWebApp</path> </configuration> </plugin> … </plugins> … </build> eclipse…Read moreHow to add a Spring project to Tomcat configuration using Eclipse IDE, so that Tomcat will load the index page from web.xml