我想用Tomcat 8测试我在spring中创建的一个REST Web服务。在我继续之前,我想验证我可以在Tomcat中运行MVC应用程序,但我有问题;在STS中,应用程序称为"http://localhost:8080/mvc/"。我导出了一个war文件并将其部署在Tomcat中(我甚至可以在webapps文件夹中看到它),但我得到了404错误。我做了一些修改;我加了
<plugin>
<groupId>org.apache.tomcat.maven</groupId>
<artifactId>tomcat7-maven-plugin</artifactId>
<version>2.2</version>
</plugin>
pom.xml。web.xml是
<?xml version="1.0" encoding="UTF-8"?>
<web-app version="2.5" xmlns="http://java.sun.com/xml/ns/javaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd">
<!-- The definition of the Root Spring Container shared by all Servlets
and Filters -->
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>/WEB-INF/spring/root-context.xml</param-value>
</context-param>
<!-- Creates the Spring Container shared by all Servlets and Filters -->
<listener>
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>
<!-- Processes application requests -->
<servlet>
<servlet-name>appServlet</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
<init-param>
<param-name>contextConfigLocation</param-name>
<param-value>/WEB-INF/spring/appServlet/servlet-context.xml</param-value>
</init-param>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>appServlet</servlet-name>
<url-pattern>/</url-pattern>
</servlet-mapping>
</web-app>
我发现有趣的是,在STS中,它与"http://localhost:8080/mvc/"一起工作,尽管servlet名称是appServlet;
您是否在web-inf目录中创建了appServlet-servlet.xml ?
DispatcherServlet初始化后,Spring MVC在WEB-INF目录
中查找一个名为[servlet-name]-servlet.xml的文件。顺便说一下,如果你想创建一个Restful Web Service的测试项目,你可以简单地谷歌"Spring Rest Maven hibernate sample",你会得到一堆示例参考和zip文件。