I put the war file in the clean and install of this project in idea into the webapps directory of the tomcat installation directory, and start tomcat, to look at any web page is The requested resource is not available. Only the home page of tomcat can be seen. I need the project to work properly in tomcat 7.0.56.
jetty is configured as follows:
<plugin>
<groupId>org.mortbay.jetty</groupId>
<artifactId>maven-jetty-plugin</artifactId>
<version>6.1.25</version>
<configuration>
<connectors>
<connector implementation="org.mortbay.jetty.nio.SelectChannelConnector">
<port>8888</port>
<maxIdleTime>60000</maxIdleTime>
</connector>
</connectors>
<contextPath>/ABC</contextPath>
<scanIntervalSeconds>0</scanIntervalSeconds>
</configuration>
</plugin>