spring boot使用feignClient调用接口

在我们实际开发过程中,一般都免不了和别的系统做交互,交互肯定少不了数据交换。一般一个系统对应一个数据库。要与另外一个系统的数据做交互,通常的做法是:在另外一个系统中写需要的接口,在需要数据交换的系统中,调用另外一个系统中写好的接口。

Spring boot调用接口我使用过两种方法:1、RestTemplate方法,这种方法使用起来感觉不是很方便,参数不好处理;2、FeignClient,这种方法我比较喜欢,比较符合Spring boot的思想,只需要一点配置,就可以调用另一个系统的接口,而且调用方式和书写Controller比较相似,只是这里的Controller是一个interface

整个实现过程如下:

1、使用maven构建项目,在pom.xml文件中加入依赖包

1、1 在dependencies加入如下依赖包:
 <dependency>
       <groupId>org.springframework.cloud</groupId>
       <artifactId>spring-cloud-starter-feign</artifactId>
 </dependency>
1、2 在dependencies后面加入如下依赖:
<dependencyManagement>
        <dependencies>
            <dependency>
                <groupId>org.springframework.cloud</groupId>
                <artifactId>spring-cloud-dependencies</artifactId>
                <version>Camden.SR5</version>
                <type>pom</type>
                <scope>import</scope>
            </dependency>
        </dependencies>
    </dependencyManagement>

2、编写FeignConfig类。此类的作用是调用接口时一些通用的参数。比如请求头。因为在另一个接口中,可能设置了RequestAttribute参数,那这边调用它的时候就需要以RequestHeader的方式传递。而每个参数就可以放置在FeignConfig中。
如:我地系统中需要一个header参数,我就在这个类中处理。

@Configuration
class FeignConfig {

    @Value("\${rainbow.server.header}")
    lateinit private var header: String

    @Autowired
    lateinit private var utils: ApiUtils

    @Bean
    @Scope("prototype")
    fun feignBuilder() = Feign.builder().decode404().requestInterceptor {
        it.header("Rainbow-APP-ID", header)
    }.errorDecoder { s, response ->
        if (response.status() in 400..499) {
            if (response.body() != null) {
                val error = utils.mapper.readValue(response.body().asInputStream(), ErrorEntity::class.java)
                throw AppException(error.message, HttpStatus.valueOf(error.status))
            }
            val status = HttpStatus.valueOf(response.status())
            throw AppException(status.reasonPhrase, status)
        } else {
            throw Exception("$s 出现异常:" + response.body().asReader().readText())
        }
    }!!       
 }

说明:此类需注解为@Configuration类。
@Value("${tiangu.order.header}"):此参数的值在配置application.yml配置文件中获取,如配置文件值如下:
rainbow:
server:
header: 00101

附上ErrorEntity和ApiUtils代码:

//此类是封装在调用接口出错时显示的错误信息
import com.fasterxml.jackson.annotation.JsonFormat
import org.springframework.http.HttpStatus
import java.util.*
import javax.servlet.http.HttpServletRequest

class ErrorEntity() {
    var message: String? = null
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    val timestamp = Date()
    var status = HttpStatus.BAD_REQUEST.value()
    var error: String? = null
    var path: String? = null
    var code: String? = null

    constructor(code: String, message: String, status: HttpStatus, request: HttpServletRequest) : this() {
        this.code = code
        this.message = message
        this.status = status.value()
        this.error = status.reasonPhrase
        this.path = request.requestURI
    }
}
import com.fasterxml.jackson.annotation.JsonInclude
import com.fasterxml.jackson.databind.DeserializationFeature
import com.fasterxml.jackson.databind.ObjectMapper
import org.springframework.boot.web.client.RestTemplateBuilder
import org.springframework.http.converter.StringHttpMessageConverter
import org.springframework.http.converter.json.MappingJackson2HttpMessageConverter
import org.springframework.stereotype.Component
import com.fasterxml.jackson.dataformat.xml.XmlMapper

@Component
open class ApiUtils {
    val restTemplate by lazy {
        RestTemplateBuilder().additionalMessageConverters(
            StringHttpMessageConverter(Charsets.UTF_8),
            MappingJackson2HttpMessageConverter()
        ).build()!!
    }

    val mapper by lazy { ObjectMapper() }

    val objectMapper by lazy { ObjectMapper().configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false)!! }

    val xmlMapper by lazy { XmlMapper().setSerializationInclusion(JsonInclude.Include.NON_NULL).configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false)!! }

    fun buildUri(url: String, params: Map<String, Any?> = emptyMap()): String {
        val query = params.filterValues { it != null }.map { "${it.key}=${it.value}" }.joinToString("&")
        val sep = if (url.contains("?")) "&" else "?"
        return "$url$sep$query"
    }
}

3、编写调用另一个接口的interface,这是一个Java接口,里面只声明方法和返回值,不实现。此类可以直接注入到service和Controller中使用。

import org.springframework.cloud.netflix.feign.FeignClient
import org.springframework.web.bind.annotation.*

@FeignClient("rainbow", url = "\${rainbow.server.url}", configuration = arrayOf(FeignConfig::class))
interface OrderClient {

//传递一个参数
    @RequestMapping("/api/v1/test", method = arrayOf(RequestMethod.GET))
    fun getList(@RequestParam("mobile") mobile: String): Any


    //传递两个参数
    @RequestMapping("/api/v1/test2", method = arrayOf(RequestMethod.POST))
    fun getOrRefuse(@RequestParam("no") no: String, @RequestParam("type") type: Int): Any


    //传递一个map
    @RequestMapping("/api/v1/test3", method = arrayOf(RequestMethod.POST))
    fun take(@RequestBody params: Map<String, String>): Any


    //传递两个参数,并且有默认值
    @RequestMapping("/api/v1/test4", method = arrayOf(RequestMethod.GET))
    fun getAll(@RequestParam("mobile") mobile: String, @RequestParam(name = "type", defaultValue = "") type: String): Any

     //传递地址参数和map
    @RequestMapping("/api/v1/test5/{no}/pay", method = arrayOf(RequestMethod.PUT))
    fun pay(@PathVariable(value = "no") no: String, @RequestBody params: Map<String, Any>): Any

    //传递带有请求头参数和map
    @RequestMapping("/api/v1/order", method = arrayOf(RequestMethod.GET))
    fun getList(@RequestHeader(value = "RAINBOW-API-ID") username: String, @RequestParam queryMap: Map<String, String>): Any

    @RequestMapping("/api/v1/test5/{no}/out", method = arrayOf(RequestMethod.PUT))
    fun out(@PathVariable(value = "no") no: String, @RequestBody params: Map<String, Any>): Any

}

说明:@FeignClient("rainbow", url = "${rainbow.server.url}", configuration = arrayOf(FeignConfig::class))
"rainbow"为这个调用的名称,可自定义;url为从配置文件中获取值;configuration固定写法。
@RequestMapping("/api/v1/test", method = arrayOf(RequestMethod.GET))
@RequestMapping中的/api/v1/test是另一个接口中Controller中的地址,它和FeignClient中的url = "${rainbow.server.url}"地址拼接成一个完整的请求地址。method为调用接口那一方的请求方法,要与那边一致。
传递的请求参数:@PathVariable,@RequestParam, @RequestBody 三种传递参数类型,注意:@PathVariable,@RequestParam这两种传递单个参数时,需要注明参数名称,也就是参数里的value值不能省略,否则会报错,我的是这样子的。如:@PathVariable(value = "no") no: String ,@RequestParam("mobile") mobile: String。


4、使用
直接注入到service中,即可使用。如下:

@Autowired
    lateinit private var userClient: UserClient

//直接调用
userClient.login(xxx,xxxx)
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 211,884评论 6 492
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 90,347评论 3 385
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 157,435评论 0 348
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 56,509评论 1 284
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 65,611评论 6 386
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 49,837评论 1 290
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,987评论 3 408
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 37,730评论 0 267
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,194评论 1 303
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,525评论 2 327
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,664评论 1 340
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,334评论 4 330
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,944评论 3 313
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,764评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,997评论 1 266
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,389评论 2 360
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,554评论 2 349

推荐阅读更多精彩内容