10,610
社区成员
发帖
与我相关
我的任务
分享
@RequestMapping(value = "/getChuliShuJu", method = RequestMethod.POST)
public void chuliShuju(HttpServletRequest request,HttpServletResponse response) throws Exception {
String xmlSuccess = "<xml><return_code><![CDATA[SUCCESS]]></return_code></xml>";
String xmlFail = "<xml><return_code><![CDATA[FAIL]]></return_code></xml>";
response.getWriter().write(xmlSuccess);
}