Spring MVC Controller无法解析URI

时间:2012-05-01 19:14:58

标签: java spring rest spring-mvc

这是一个类似于之前被问过的问题,但仍然不同,我根本无法理解。

我有一个用MVC实现的REST web服务的控制器应该处理路径'/ users / contacts'的请求,问题是在我的客户端测试应用程序中,当我尝试按下该路径时,我得到:< / p>

No mapping found for HTTP request with URI /users/users/contacts in DispatcherServlet with name 'webservice'

同样,在我的客户端测试应用中,当我将请求路径更改为'/ WHATEVERusers / contacts'时,我会收到无法解决的错误'/ WHATEVERusers / contacts'

我不知道为什么当我尝试命中一个由控制器处理的路径时,它会被破坏,但当我请求一些垃圾路径时,却没有。

我没有在我面前的代码,但是当我回到家时能够回答问题。

以下是我的测试客户端的代码:

private static void TestGetContacts()
{
    UserCreateRequest request = new UserCreateRequest();

    Gson gson = new Gson();

    try

    {
        HttpClient client = new DefaultHttpClient();

        StringEntity string  = new StringEntity(gson.toJson(request), HTTP.UTF_8);
        string.setContentType("application/json");

        URI uri = URIUtils.createURI("http", "localhost", 8888, "/users/contacts", null, null);

        HttpPost post = new HttpPost(uri);
        post.setEntity(string);

        client.execute(post);
    }
    catch(Exception ex)
    {
        System.out.println(ex.getMessage());
    }
}

这是我的控制器类:

@Controller
@RequestMapping("/users/contacts")
public class UserContactService
{
private @Autowired ApplicationContext appContext;

@RequestMapping(method=RequestMethod.POST, consumes="application/json", produces="application/json")
public GetContactsResponse GetContacts(@RequestBody UserCreateRequest request)
{
    GetContactsResponse response = new GetContactsResponse();

    return response;
}
}

这是我的servlet配置:

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xmlns:p="http://www.springframework.org/schema/p"
xmlns:context="http://www.springframework.org/schema/context"
    xmlns:oxm="http://www.springframework.org/schema/oxm"
    xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
            http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd
            http://www.springframework.org/schema/oxm http://www.springframework.org/schema/oxm/spring-oxm-3.0.xsd">

<!--
    - The controllers are autodetected POJOs labeled with the @Controller annotation.
-->
<context:component-scan base-package="com.impersonal.server.restservice.users"/>                

<bean class="org.springframework.web.servlet.mvc.annotation.AnnotationMethodHandlerAdapter">
    <property name="messageConverters">
        <list>
            <ref bean="jsonConverter" />
            <!-- 
            <ref bean="marshallingConverter" />
            <ref bean="atomConverter" />
            -->
        </list>
    </property>
</bean>

<bean id="jsonConverter" class="org.springframework.http.converter.json.MappingJacksonHttpMessageConverter">
    <property name="supportedMediaTypes" value="application/json" />
</bean>

这是我的网络配置:

<?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_2_5.xsd"
version="2.5">

<context-param>
    <param-name>contextConfigLocation</param-name>
    <param-value>classpath:/**/applicationContext.xml</param-value>
</context-param>

<servlet>
    <servlet-name>webservice</servlet-name>
    <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
    <load-on-startup>1</load-on-startup>
</servlet>

<servlet-mapping>
    <servlet-name>webservice</servlet-name>
    <url-pattern>/*</url-pattern>
</servlet-mapping>

<welcome-file-list>
    <welcome-file>index.html</welcome-file>
</welcome-file-list>

更新 我的请求在我的控制器中处理,但在处理请求后,服务器打印出无法解析/ users / users / contacts。由于某种原因,另一个请求是到DispsatcherServlet,我不知道为什么..

谢谢, 标记

2 个答案:

答案 0 :(得分:1)

@ResponseBody添加到我的方法签名解决了我的问题。没有意识到我确实需要它,并没有让它产生真正奇怪的副作用。

答案 1 :(得分:0)

您是否尝试将网址放在方法上方的@RequestMapping而不是您的类之上?我注意到它可能会不时解决URI Mapping问题。

您可以在同一个类中使用不同的方法处理更多网址。您甚至可以在类上方添加@RequestMapping(“/ users”),并使用

添加不同的方法
  • @RequestMapping(“/ contacts”)映射到/ users / contacts
  • @RequestMapping(“/ customers”)映射到/ users / customers