这个问题就解决了。 有人创建了一个名为MVC-dispatcher.xml文件,它有一个不正确的配置。 因为它被称为同一个servlet该文件将被自动加载。
我要感谢大家谁试图帮助我解决这个问题。 我在这里保留了这个问题,因为它实际上解释了如何创建一个REST接口。 它完美的作品。
我试图建立与Spring的MVC一个RESTful接口。 服务器启动时没有问题,但任何时候我尝试调用REST接口我得到的消息:
41 WARN [springframework.web.servlet.PageNotFound] No mapping found for HTTP request with URI [/myweb/rest/asd/aaa] in DispatcherServlet with name 'mvc-dispatcher'
看来,我发送URL( http://localhost:8080/myweb/rest/asd/qwe
例如)不受任何控制'捕获'。 我究竟做错了什么?
我不知道还有什么我可以尝试。 我使用Java 1.7.0_15下,Tomcat 7.0.34和Spring 3.1.4.RELEASE
在我的web.xml:
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd" id="WebApp_ID" version="3.0">
<display-name>MyWeb</display-name>
<welcome-file-list>
<welcome-file>index.xhtml</welcome-file>
</welcome-file-list>
<!-- Listener for MVC spring -->
<listener>
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>
<listener>
<listener-class>org.springframework.web.context.request.RequestContextListener</listener-class>
</listener>
<!-- Servlet for MVC spring -->
<servlet>
<servlet-name>mvc-dispatcher</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>mvc-dispatcher</servlet-name>
<url-pattern>/rest/*</url-pattern>
</servlet-mapping>
<!-- Loading web properties -->
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>/WEB-INF/applicationContext*.xml</param-value>
</context-param>
在我的applicationContext.xml:
<context:component-scan base-package="com.myweb.*" />
<context:annotation-config/>
<tx:annotation-driven/>
<mvc:annotation-driven />
最后,我的控制器类:
import org.apache.log4j.Logger;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.RequestMapping;
@Controller
public class RestController {
private static Logger LOG = Logger.getLogger(RestController.class);
@RequestMapping("/asd/{test}")
public void test(@PathVariable String test) {
LOG.info("You sent "+test);
}
}
试图改变方法的@RequestMapping,但仍然没有工作:
@RequestMapping(method=RequestMethod.GET)
public void test() {
LOG.info("You sent something");
}