SpringBoot之Consuming a RESTful Web Service

编程入门 行业动态 更新时间:2024-10-08 08:22:50

SpringBoot之<a href=https://www.elefans.com/category/jswz/34/1769132.html style=Consuming a RESTful Web Service"/>

SpringBoot之Consuming a RESTful Web Service

程序通过org.springframework.web.client.RestTemplate调用REST服务,这里REST服务使用

省去maven搭建项目与model类部分,主要代码如下:

package consume.restfull.web.service.hello;import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.boot.CommandLineRunner;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.web.client.RestTemplate;@SpringBootApplication
public class Application implements CommandLineRunner {private static final Logger log = LoggerFactory.getLogger(Application.class);public static void main(String[] args){SpringApplication.run(Application.class, args);}@Overridepublic void run(String... arg0) throws Exception {RestTemplate restTemplate = new RestTemplate();Quote quote = restTemplate.getForObject("", Quote.class);log.info(quote.toString());}
}

说明:

RestTemplate makes interacting with most RESTful services a one-line incantation.

The Jackson JSON processing library is in the classpath, RestTemplate will use it (via a message converter) to convert the incoming JSON data into a Quote object.

RestTemplate supports other HTTP verbs such as GET, POST, PUT, and DELETE.

更多推荐

SpringBoot之Consuming a RESTful Web Service

本文发布于:2024-02-28 08:48:24,感谢您对本站的认可!
本文链接:https://www.elefans.com/category/jswz/34/1768766.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文标签:Consuming   SpringBoot   RESTful   Service   Web

发布评论

评论列表 (有 0 条评论)
草根站长

>www.elefans.com

编程频道|电子爱好者 - 技术资讯及电子产品介绍!