您好,登錄后才能下訂單哦!
1.服務productservices
@RestController public class ProductController { @RequestMapping("/product/findAll") public Map findAll(){ Map map = new HashMap(); map.put("111","蘋果手機"); map.put("222","蘋果筆記本"); return map; } }
2.服務userservices
@RestController public class UserController { @RequestMapping("/user/showProductMsg") public String showProductMsg(){ RestTemplate restTemplate = new RestTemplate(); String msg = restTemplate.getForObject("http://127.0.0.1:9001/product/findAll",String.class); return msg; } }
3.問題
1.直接使用restTemplate方式調用沒有經過服務注冊中心獲取服務地址,代碼寫死不利于維護,當服務宕機時不能高效剔除。
2.調用服務時沒有負載均衡需要自己實現負載均衡策略。
以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持億速云。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。