初探Spring Cloud Fegin (参数传递篇)

本文详细探讨了在Spring Cloud Feign中如何进行微服务间调用的参数传递,重点介绍了@PathVariable和@RequestParam注解的使用方法,并通过示例代码展示其工作原理。同时,文中提到在GET请求传递对象时并未出现网上所述的错误情况。
摘要由CSDN通过智能技术生成

SpringCloud中微服务之间的调用,传递参数时需要加相应的注解。主要用到的就是这三个注解@RequestBody,@RequestParam,@PathVariable

上一篇已经展示了怎么使用@RequestParam该注解,这一篇我们使用一下剩下的两种注解:

@PathVariable使用如下:

只需要在eureka-fegin-service和eureka-fegin-service-tmp的Controller中修改如下:

package com.cn.controller;

import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.RestController;

@RestController
public class EurekaFeginTmpController {

    @RequestMapping("/getName")
    public String getName(@RequestParam String name){
        return "hello2 : " + name;
    }

    @RequestMapping("/getName/{id}")
    public String getNameById(@PathVariable Long id){
        return "hello2 : 
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值