使用OpenFeign实现微服务间的接口调用

本文详细介绍了如何使用Spring Cloud和OpenFeign构建微服务架构,通过实例展示serviceA如何调用serviceB的接口。从依赖配置到测试,包括Controller、Service和FeignClient的实现,确保了跨模块间的高效调用。
摘要由CSDN通过智能技术生成

一、微服务架构如下:

模块名用途实例名
springCloud_nacos服务注册中心springcloud-nacos
springCloud_serviceA微服务模块Aspringcloud-serviceA
springCloud_serviceB微服务模块Bspringcloud-serviceB

二、openFeign实现微服务间接口调用(serviceA 调用 serviceB 接口)

1、在父pom.xml中添加依赖

        <!--openfeign-->
        <dependency>
            <groupId>org.springframework.cloud</groupId>
            <artifactId>spring-cloud-starter-openfeign</artifactId>
            <version>2.2.2.RELEASE</version>
        </dependency>

2、serviceB 提供方配置:

1)Controller层:

@RestController
@RequestMapping("/serverB")
public class SerBController {

    @Autowired
    SerBService serBService;

    @GetMapping("/queryByName/{userName}")
    public String queryByName(@PathVariable String userName){
         return serBService.queryByName(userName);
    }
}

2) Service层:

public interface SerBService {

    String queryByName(String userName);
}

3)接口实现类:

@Service
public class SerBServiceImpl implements SerBService {
    @Override
    public String queryByName(String userName) {
        return "恭喜你成功调用serviceB接口,名称为:" + userName;
    }
}

3、serviceA 调用方配置:

1)在启动类中添加注解@EnableFeignClients,代码如下:

@SpringBootApplication(exclude= {DataSourceAutoConfiguration.class})
@EnableDiscoveryClient
@RibbonClient(name = "springcloud-serviceA")
@EnableFeignClients
public class SpringCloudServiceAApplication {
    public static void main(String[] args) {
        SpringApplication.run(SpringCloudServiceAApplication.class, args);
    }
}

2)Controller层:

@RestController
@Slf4j
@RequestMapping("/serverA")
public class CommonController {

    @Autowired
    private CommonService commonService;

    @GetMapping("/queryServiceB/{userName}")
    public String queryServiceB(@PathVariable String userName) {
        return commonService.queryServiceB(userName);
    }
}

3)Service层:

@FeignClient(name = "springcloud-serviceB")
public interface CommonService {

    @GetMapping("/serverB/queryByName/{userName}")
    String queryServiceB(@PathVariable String userName);

}

:① 接口层添加注解@FeignClient,并在注解中指明属性value="服务提供方的实例名";

       ②  在方法上添加映射的URL要与服务提供方接口的URL一致;

三、测试

使用postman测试,调用serviceA 的接口,查看serviceA能否跨模块调用serviceB的接口

请求URL:

http://216.1.1.7:9903/serverA/queryServiceB/张三


返回结果:

恭喜你成功调用serviceB接口,名称为:张三

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值