我正在使用Spring 3.0.5创建一个RESTful控制器。我已经指定了我愿意接受的内容类型,但发现如果请求与其他内容一起发送,我得到的是404而不是预期的406.有人可以指出我缺少的内容吗?
@Controller
@RequestMapping("/hello")
public class HelloWorldController {
@RequestMapping(value="/{name}", method=RequestMethod.GET, headers="accept=application/json")
public @ResponseBody Map<String, String> sayHello(@PathVariable("name") String username) {
Map<String,String> result = new HashMap<String,String>();
result.put("greeting", "Hello "+username);
return result;
}
}
如果我发送带有“accept = application / json”标题的请求,一切正常。但是,标题为“accept =”text / xml“的请求将返回404。
谢谢!
- 约翰
答案 0 :(得分:0)
这是我的评论,作为完整性的答案。
我建议您升级到3.1及更高版本。这些处理程序处理问题似乎已得到解决。