我目前正试图弄清楚在使用JavaScript从浏览器向Java应用程序发布数据方面要遵循的流程。
JavaScript发布功能
xhr = new XMLHttpRequest();
var url = "http://localhost:9200/test/mytest";
xhr.open("POST", url, true);
xhr.setRequestHeader("Content-type", "application/json");
var data = JSON.stringify({"test" : testdata123});
xhr.send(data);
我想使用rest在java应用程序中使用上面的Json数据。我该如何设置呢?
答案 0 :(得分:0)
似乎是重复的 How to consume json parameter in java restful service
根据JSR 311,您可以使用@Consumes注释接受MIME / json的MIME类型来使用java应用程序中的数据。