#编者注
由于要编写一个统一的xmlrpc调用与rest,里面涉及到了跨域调用问题。随即有以下内容#Spring的跨域
##Spring 4.2.x 编者原本是想在Spring响应内容添加跨域请求,但由于不好划定跨域范围,产生了拆分想法。但经过查询Spring文档后发现,最新稳定版本提供了跨域支持**@CrossOrigin**,随即我们就可以在Controller当中添加注解来完成。@Controller@RequestMapping(value = "/default/Api")public class XmlrpcServerController { @CrossOrigin @RequestMapping(method = RequestMethod.POST) public Object xmlrpc_api(@RequestBody String body) throws Exception { //get body System.out.println(body); //doing return result; }
#JSON信息的接收 除了我们要接收上面需求的xml文件以外,rest接收还应当包括其他对象。通过搜索发现需要通过ajax把json以data的形式进行发送。
Bootstrap 101 Template 你好,世界!
Link