如何使用Json请求,来自其他应用程序,如".Net",我想将其使用到我的Java应用程序中。
如何在Spring MVC中使用控制器。
谢谢Shashank
如果我能理解你的问题,那么你问的是如何将JsonRequest发布到RestController,为此我附上了一个代码片段,希望它能有所帮助。
步骤1:创建该JSON请求的模型类。步骤2:用Controller方法标记@RequestBody Annotation,以在method参数中获得该类型的Object。
@RequestMapping(value = "/getRequest", method = { RequestMethod.POST },
produces = {"application/json"})
public @ResponseBody Object getResponse(@RequestBody JsonRequest request) {
sysout("Json Body: "+request.toString());
}
您基本上是在问控制器是如何工作的!!控制器的工作是处理对其服务的任何(JSON或…(请求。我建议你阅读一些关于springMVC和控制器的文章,了解它是如何工作的。
https://www.baeldung.com/building-a-restful-web-service-with-spring-and-java-based-configuration
https://www.in28minutes.com/spring-mvc-tutorial-for-beginners