Spring Boot 中feign的使用

2021-10-07 23:58:44 字數 551 閱讀 9879

spring boot 中feign的使用

1,匯入依賴

org.springframework.cloud

spring-cloud-starter-feign

1.3.2.release

2,編寫feign介面

@feigncilent是指定對應服務的,()裡面加伺服器整合到註冊中心的伺服器名稱,或者直接給伺服器位址url = "http://localhost:8083/blog-service"

介面中的方法要和controller完全對應

@feignclient("blog-picture")

public inte***ce filefeign

}

4,業務**呼叫(直接注入即可)

注意   :   乙個服務只能有乙個feign介面,@crossorigin 是開啟跨域,

SpringCloud框架基礎(六)Feign

快速入門案例 feign中的負載均衡 hystix支援 org.springframework.cloud spring cloud starter openfeign 建立乙個feign的客戶端類 介面中的定義方法,完全採用springmvc的註解,feign會根據註解幫我們生成url,並訪問獲取...

Springboot中Thymeleaf外部模板

spingboot專案中,預設的thymeleaf模板資料夾是在 src main resources templates,打包時後在classpath templates下 jar包同目錄下的 templates 目錄 spring.thymeleaf.prefix file templates ...

springboot中controller無法訪問

configuration 該註解將類可以看成配置檔案,通常和 bean配合使用 enableautoconfiguration 在程式啟動時自動載入配置 componentscan 會自動掃瞄指定包下的全部標有 component的類,並註冊成bean,當然包括 component下的子註解 se...