中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Springboot內部服務調用方式有哪些

發布時間:2022-03-15 09:09:38 來源:億速云 閱讀:408 作者:小新 欄目:開發技術

小編給大家分享一下Springboot內部服務調用方式有哪些,希望大家閱讀完這篇文章之后都有所收獲,下面讓我們一起去探討吧!

Eureka注冊的服務之間互相調用

1.請求方

啟動類添加注解,掃描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
            } 
        };
    }
}

2.接收方

請求 啟動類

@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 ,啟動主類后報下圖錯誤:

Springboot內部服務調用方式有哪些

解決辦法

多模塊化時,應該在order主類上添加下面圈出來的注解,這樣啟動后就能掃描這個包。

Springboot內部服務調用方式有哪些

看完了這篇文章,相信你對“Springboot內部服務調用方式有哪些”有了一定的了解,如果想了解更多相關知識,歡迎關注億速云行業資訊頻道,感謝各位的閱讀!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

贵溪市| 特克斯县| 砚山县| 嵊泗县| 荥阳市| 威远县| 曲麻莱县| 台东市| 拉孜县| 含山县| 巩留县| 新晃| 聂拉木县| 黑水县| 五河县| 邯郸县| 马山县| 英吉沙县| 安陆市| 读书| 义马市| 英山县| 斗六市| 朝阳市| 梅河口市| 邵东县| 石首市| 饶平县| 邻水| 綦江县| 黄冈市| 慈利县| 绥棱县| 义乌市| 体育| 富蕴县| 巴东县| 明溪县| 徐州市| 金阳县| 东丽区|