Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

thirty-one。 Using RestTemplate in Springboot

2025-04-09 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Internet Technology >

Share

Shulou(Shulou.com)06/03 Report--

one。 Preface

Instructions for using the official website

Get Eureka instance

Public String serviceUrl () {InstanceInfo instance = discoveryClient.getNextServerFromEureka ("STORES", false); return instance.getHomePageUrl ();}

Steps:

two。 Import package

Pom.xml

Org.springframework.cloud spring-cloud-starter-eureka org.springframework.cloud spring-cloud-starter-hystrix

three。 Modify startup Application

@ EnableCircuitBreaker@EnableDiscoveryClientpublic class HellloMain {@ Bean @ LoadBalanced RestTemplate restTemplate () {return new RestTemplate ();} public static void main (String [] args) {SpringApplication.run (HelloMain.class, args);}}

four。 Business use

Private int xxxx (String body) {RestTemplate restTemplate = new RestTemplate (); HttpHeaders headers = new HttpHeaders (); MediaType type = MediaType.parseMediaType ("application/json"); headers.setContentType (type); HttpEntity formEntity = new HttpEntity (body, headers) String result = restTemplate.postForObject (getEurkaClient ("hello-module"), formEntity, String.class); return 0;} public String getEurkaClient (String end) {InstanceInfo instance = discoveryClient.getNextServerFromEureka ("smarthome-phihome", false); return instance.getHomePageUrl () + end;}

So that you can call each other between applications.

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Internet Technology

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report