文件名称:Spring 4 + REST Web Service + JSON Example with Tomcat
文件大小:12KB
文件格式:ZIP
更新时间:2020-11-22 03:50:43
Spring4 RESTful WebService RPC
我们将学习如何使用Spring 4与REST Web Service来获取JSON响应。Spring 4 Web Service类用@RestController 进行注释, 可以取代@Controller和@ResponseBody的使用。要映射REST Web服务URL,请使用注释@RequestMapping。Web服务方法参数包含@RequestParam,该属性具有defaultValue属性 ,该值将为请求中不可用的请求参数分配默认值。 要设置环境,我们可以使用Spring Boot快速启动。WebApplicationInitializer用于替换web.xml设置。服务器启动时,由WebApplicationInitializer初始化Spring配置。 最终访问地址 -> http:// localhost:8080 / 工程名 / data / person?id = 15 输出将显示如下 ↓ JSON { “id” :15 ,“location” :“Varanasi” ,“name” :“Ram” }
【文件预览】:
Spring4RestWS
----bin()
--------main()
----pom.xml(970B)
----.settings()
--------org.eclipse.jdt.core.prefs(629B)
----src()
--------main()
----.project(484B)
----.classpath(4KB)