2

这个问题解决了。有人创建了一个名为 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");
}
4

2 回答 2

3

你的映射是错误的。

您正在请求/rest/asd/aaa,但您的映射是针对/asd/{test}.

您需要更改@RequestMapping("/asd/{test}")@RequestMapping("/rest/asd/{test}")

或添加@RequestMapping("/rest")到您的控制器类

于 2013-03-01T17:09:25.777 回答
0

尝试用 url 来注释你的控制器类@RequestMapping("/rest")来处理所有请求

/webapp/休息/

您还应该通过org.springframework.web.context.ContextLoaderListener侦听器配置您的上下文。我想你没有加载applicationContext.xml

将此部分添加到您的web.xml

<!--spring bootstrap listener  -->
<context-param>  
        <param-name>contextConfigLocation</param-name>  
        <param-value>/WEB-INF/config/applicationContext.xml</param-value>  
</context-param>


<listener>  
    <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>  
</listener>
于 2013-03-01T17:09:13.323 回答