服务器之家:专注于服务器技术及软件下载分享
分类导航

PHP教程|ASP.NET教程|Java教程|ASP教程|编程技术|正则表达式|C/C++|IOS|C#|Swift|Android|VB|R语言|JavaScript|易语言|vb.net|

服务器之家 - 编程语言 - Java教程 - spring boot openfeign从此和httpClient说再见详析

spring boot openfeign从此和httpClient说再见详析

2021-05-08 12:15张占岭 Java教程

这篇文章主要给大家介绍了关于spring boot openfeign从此和httpClient说再见的相关资料,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面来一起看看吧

前言

在微服务设计里,服务之间的调用是很正常的,通常我们使用httpclient来实现对远程资源的调用,而这种方法需要知识服务的地址,业务接口地址等,而且需要等他开发完成后你才可以去调用它,这对于集成开发来说,不是什么好事 ,产生了a业务与b业务的强依赖性,那么我们如何进行解耦呢,答案就是openfeign框架,它与是springcloudy里的一部分。

1 添加包引用

?
1
'org.springframework.cloud:spring-cloud-starter-openfeign',

注意:如果你没有引用springcloudy版本人有太多,需要先声明它

?
1
2
3
4
5
dependencymanagement {
 imports {
 mavenbom "org.springframework.cloud:spring-cloud-dependencies:${springcloudversion}"
 }
}

2 定义profile相关配置

?
1
2
3
4
5
6
7
8
9
10
11
12
//默认的一些文件路径的配置
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就可以

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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注解

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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 添加单元测试,注意在单元测试上一定要指定它的环境变量

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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,以后开发服务对服务调用就可以解耦了!

总结

以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作具有一定的参考学习价值,如果有疑问大家可以留言交流,谢谢大家对服务器之家的支持。

原文链接:https://www.cnblogs.com/lori/p/9138678.html

延伸 · 阅读

精彩推荐