91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

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

乐清市| 上栗县| 读书| 蒙城县| 弋阳县| 金华市| 金坛市| 娄烦县| 西乌| 鲁山县| 盘山县| 天水市| 海淀区| 蒲江县| 常山县| 正宁县| 扬州市| 文昌市| 岐山县| 六安市| 红安县| 万山特区| 丰原市| 高淳县| 惠安县| 天台县| 绩溪县| 招远市| 阿城市| 临泉县| 镇沅| 米泉市| 九寨沟县| 綦江县| 清远市| 萍乡市| 平顺县| 平乐县| 昆山市| 稻城县| 天镇县|