我是靠谱客的博主 魁梧芝麻,最近开发中收集的这篇文章主要介绍SpringBoot下的远程调用,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

注入restTemplate,用它来访问远程对象

package com.pp.config;

import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.web.client.RestTemplateBuilder;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.web.client.RestTemplate;

@Configuration
public class RestConfig {
    //builder本来就有
	@Autowired
	private RestTemplateBuilder builder;

	@Bean
	public RestTemplate restTemplate() {
		return builder.build();
	}
}

启动另一项目 ,在SpringBoot项目下访问/remote接口

@Autowired
	private RestTemplate restTemplate;
	
	@RequestMapping("/remote")
	@ResponseBody
	public List<Student> remote(){
		//8084是tomcat端口号+接口名+不加项目名
		String url="http://localhost:8084/easywork-v3/pp/Student/selectAllx";
		return (List<Student>) restTemplate.getForObject(url, Object.class);
	}

 

最后

以上就是魁梧芝麻为你收集整理的SpringBoot下的远程调用的全部内容,希望文章能够帮你解决SpringBoot下的远程调用所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(42)

评论列表共有 0 条评论

立即
投稿
返回
顶部