您好,登錄后才能下訂單哦!
小編給大家分享一下如何使用openfeign框架進行解耦,相信大部分人都還不怎么了解,因此分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后大有收獲,下面讓我們一起去了解一下吧!
前言
在微服務設計里,服務之間的調用是很正常的,通常我們使用httpClient來實現對遠程資源的調用,而這種方法需要知識服務的地址,業務接口地址等,而且需要等他開發完成后你才可以去調用它,這對于集成開發來說,不是什么好事 ,產生了A業務與B業務的強依賴性,那么我們如何進行解耦呢,答案就是openfeign框架,它與是springcloudy里的一部分。
1 添加包引用
'org.springframework.cloud:spring-cloud-starter-openfeign',
注意:如果你沒有引用springcloudy版本人有太多,需要先聲明它
dependencyManagement { imports { mavenBom "org.springframework.cloud:spring-cloud-dependencies:${springCloudVersion}" } }
2 定義profile相關配置
//默認的一些文件路徑的配置 sourceSets { integTest { java.srcDir file('src/test/java') resources.srcDir file('src/test/resources') } } task integTest(type: Test) { testClassesDirs = sourceSets.test.output.classesDirs classpath = sourceSets.test.runtimeClasspath }
3 定義服務接口,定義偽方法,就是服務里的方法,你要知識方法參數和它的返回值,實現不用管,只在單元測試里MOCK就可以
package test.lind.javaLindDay.feignClientDemo; import org.springframework.cloud.openfeign.FeignClient; import org.springframework.context.annotation.Profile; import org.springframework.web.bind.annotation.GetMapping; /** * 模擬其他服務. */ @Profile("!integTest") @FeignClient(name = "serviceName") public interface MockClient { @GetMapping(path = "/balanceSheet/{clientCode}") String balanceSheet(String clientCode); }
4 Profile的作用
profile就是環境變量,你在類上通過ActiveProfile去激活它,在使用它時,有過Profile注解來使用上,上面代碼中MockClient對象不能在integTest環境下使用。
5 添加MOCK實現,它是自動注入的,所以聲明@Bean注解
package test.lind.javaLindDay; import static org.mockito.ArgumentMatchers.anyString; import static org.mockito.Mockito.mock; import static org.mockito.Mockito.when; import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.Configuration; import org.springframework.context.annotation.Profile; import test.lind.javaLindDay.feignClientDemo.MockClient; @Configuration @Profile("integTest") public class MockClientTest { @Bean public MockClient mockClient() { MockClient client = mock(MockClient.class); when(client.balanceSheet( anyString())) .thenReturn("OK"); return client; } }
6 添加單元測試,注意在單元測試上一定要指定它的環境變量
package test.lind.javaLindDay; import static org.junit.Assert.assertEquals; import org.junit.Test; import org.junit.runner.RunWith; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.boot.test.context.SpringBootTest; import org.springframework.test.context.ActiveProfiles; import org.springframework.test.context.junit4.SpringRunner; import test.lind.javaLindDay.feignClientDemo.MockClient; @RunWith(SpringRunner.class) @SpringBootTest //指定profile環境 @ActiveProfiles("integTest") public class JavaLindDayApplicationTests { @Autowired MockClient mockClient; @Test public void testMockClient() { assertEquals(mockClient.balanceSheet("OK"), "OK"); } }
運行測試后,MockClient將會被注入,它將使用Mock實現類,因為只有Mock實現類的Profile是指向integtest環境的。
有了openfeign,以后開發服務對服務調用就可以解耦了!
以上是“如何使用openfeign框架進行解耦”這篇文章的所有內容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內容對大家有所幫助,如果還想學習更多知識,歡迎關注億速云行業資訊頻道!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。