我正在尝试在 restFul Web 服务 URL 的末尾添加一个参数。
使用 Spring3
@RequestMapping(value="/searchForXmlFormat/{lastName}*?format=xml"* ,headers="Accept=application/atom+xml",method=RequestMethod.GET)
我想得到这样的东西:
rest/name/abcd?format=xml
或者
rest/name/abcd?format=json.
我有获取 JSON /XML 格式数据的代码。我需要弄清楚如何在末尾添加?format=xml
or 。?format=json