我从一个Spring入门样本开始。我正在扩展它以符合我的情况。我试图在Web服务调用上使用PUT方法。我收到错误消息“不支持请求方法'PUT'”。但是,执行使其成为Web服务。返回后/期间发生错误。我需要对我的对象做些什么来允许从非GET HTTP方法返回吗?
我使用python编写的测试存根调用Web服务。我没有发布该代码,因为执行正在进入Web服务。
以下是Spring代码:
@ComponentScan
@EnableAutoConfiguration
@Controller
@RequestMapping("/jp5/rest/message")
public class MessageRestService
{
@RequestMapping(method=RequestMethod.PUT, value="/test")
public testResult test()
{
// I hit a breakpoint here:
return new testResult(true, "test");
}
}
class testResult
{
public testResult( boolean success, String message )
{
setSuccess(success);
setMessage(message);
}
//@XmlElement
private boolean success;
//@XmlElement
private String message;
public boolean isSuccess() {
return success;
}
public void setSuccess(boolean success) {
this.success = success;
}
public String getMessage() {
return message;
}
public void setMessage(String message) {
this.message = message;
}
}
修改 没有堆栈跟踪,只是在服务器输出中:
2013-11-13 21:26:20.976 WARN 5452 --- [nio-8888-exec-1]
o.s.web.servlet.PageNotFound :
Request method 'PUT' not supported
这是请求的python。而且,我认为问题的答案在于“'允许':'GET,HEAD'”在回复中。那么,我如何允许其他方法呢?也许我需要考虑一个applicationContext?
path = '/jp5/rest/message/test'
method = 'PUT'
body = ''
target = urlparse(self.uri+path)
h = http.Http()
headers = {
'Accept': 'application/json',
'Content-Type': 'application/json; charset=UTF-8'
}
response, content = h.request(
target.geturl(),
method,
body,
headers)
print response
打印输出:
{'status': '405', 'content-length': '1045', 'content-language': 'en-US', 'server':
'Apache-Coyote/1.1', 'allow': 'GET, HEAD', 'date': 'Thu, 14 Nov 2013 02:26:20 GMT',
'content-type': 'text/html;charset=utf-8'}
我正在启动服务器:
@ComponentScan
@EnableAutoConfiguration
public class Application {
public static void main(String[] args) {
SpringApplication.run(Application.class, args);
}
}
由于
答案 0 :(得分:5)
感谢指点。解决方案是添加@ResponseBody:
public @ResponseBody testResult test()
{
return new testResult(true, "test");
}