404从resttemplate调用post

时间:2011-08-09 23:46:01

标签: spring

我正在使用rest模板调用服务,我收到404错误。

这是一个POST。方法的签名是

String sendScreenAsPostcard(@RequestBody MultiValueMap<String, Object> params)

我注意使用以下代码从resttemplate中调用它。

restTemplate.exchange(
            "http://localhost:8080/sendScreeenAsPostCard",
            HttpMethod.POST,
            new HttpEntity<MultiValueMap<String, Object>>(parameters, headers),
            String.class
        ).getBody()

请告知我做错了什么。感谢。

1 个答案:

答案 0 :(得分:1)

404表示找不到资源。如果一切都相当简单,则意味着在localhost:8080上运行的HTTP服务器,但/ sendScreenAsPostCard没有可用的资源。