您的当前位置:首页正文

springboot使用restTemplate

2024-11-30 来源:个人技术集锦

使用组件类中

@Autowired
private RestTemplate restTemplate;

private static final String URL_getmobile ="http://localhost:8091";

具体使用方法中

String mobile = restTemplate.getForObject(URL_getmobile+"/getMobile/receiver/"+receiver,String.class);

String.calss是返回类型的类,亦可person.class
此时,回报 restTemplate没有定义的错误,
在启动类文件定义bean

    @Bean
	public RestTemplate restTemplate(){
		return new RestTemplate();
	}

正常调用8091服务的方法

显示全文