您好,登錄后才能下訂單哦!
小編給大家分享一下Springboot內部服務調用方式有哪些,希望大家閱讀完這篇文章之后都有所收獲,下面讓我們一起去探討吧!
啟動類添加注解,掃描Eureka 中的全部服務
@SpringBootApplication @EnableEurekaClient @EnableFeignClients public class LoginServiceApplication { public static void main(String[] args) { new SpringApplicationBuilder(LoginServiceApplication.class).web(true).run(args); } }
pom.xml 添加包 (版本號 根據實際選擇)
<dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-starter-feign</artifactId> <version>1.4.6.RELEASE</version> </dependency>
創建接口類
@FeignClient(name="hello-service") //spring service name public interface FeignVehicle { @RequestMapping(value="/hello", method = RequestMethod.GET) @ResponseBody public List<Map> hello(@RequestParam Map<String,String> params); }
實現類注入此接口類
@Autowired FeignVehicle feignVehicle;
使用的時候直接按照正常調用方式即可
Map<String,String> map = new HashMap<String, String>(); feignVehicle.hello(map);
跨服務調用的時候出現token信息取不到,在發送方添加攔截器
@Configuration public class FeignConfiguration { @Bean public RequestInterceptor requestInterceptor() { return new RequestInterceptor() { @Override public void apply(RequestTemplate template) { ServletRequestAttributes attributes = (ServletRequestAttributes) RequestContextHolder .getRequestAttributes(); HttpServletRequest request = attributes.getRequest(); //當前服務token template.header("Authorization","Bearer " + request.getSession().getId()); //template 接收請求方token } }; } }
請求 啟動類
@SpringBootApplication @EnableEurekaClient public class HelloServiceApplication { public static void main(String[] args) { new SpringApplicationBuilder(HelloServiceApplication.class).web(true).run(args); } }
請求Controller
@Controller @RequestMapping("/hello") public class HelloController { @RequestMapping(value="/hello",method = RequestMethod.GET) @ResponseBody public List<Map> hello(@RequestParam Map<String, String> queryParam) { return null; } }
product
服務作為服務端,提供了一個 對外通信Fegin接口 ProductClient,放在了com.imooc.product.client jar包下
order
服務作為客戶端,直接引用上面的jar,使用 ProductClient ,啟動主類后報下圖錯誤:
多模塊化時,應該在order主類上添加下面圈出來的注解,這樣啟動后就能掃描這個包。
看完了這篇文章,相信你對“Springboot內部服務調用方式有哪些”有了一定的了解,如果想了解更多相關知識,歡迎關注億速云行業資訊頻道,感謝各位的閱讀!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。