1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
| package com.kagarise.consumeruser.controller;
import org.springframework.beans.factory.annotation.Autowired; import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.RestController; import org.springframework.web.client.RestTemplate;
@RestController public class userController {
@Autowired RestTemplate restTemplate;
@GetMapping("/buy") public String buyTicket(String name) { String s = restTemplate.getForObject("http://PROVIDER-TICKET/ticket", String.class); return name + "购买了" + s; } }
|