meibuyu / rpc
美不语微服务RPC接口库
v3.1.4
2023-06-29 02:02 UTC
Requires
- php: >=7.2
- dev-master
- v3.1.4
- v3.1.3
- v3.1.2
- v3.1.1
- v2.2.35
- v2.1.1
- v1.0.16
- v1.0.15
- v1.0.14
- v1.0.13
- v1.0.12
- v1.0.11
- v1.0.10
- v1.0.8
- v1.0.7
- v1.0.6
- v1.0.4
- v1.0.3
- v1.0.2
- v1.0.1
- v1.0.0
- dev-develop
- dev-feature-sync_lingxing_1119
- dev-feature-order_delivery_1026
- dev-feature-order_finish_1023-zdy
- dev-feature-qc_message_0803-zdy
- dev-feature-fba_dispatch_0807
- dev-feature-combine_product_0722
- dev-feature-sku_weight_volume_0523
- dev-feature-allocation_task_0508
- dev-feature-dispatch_plan_0409
- dev-feature-oversea_warehouse_stock_0402
- dev-0327_delivery_task_optimize
- dev-safety_stock_optimize_0116
- dev-feature-purchase_exception_1204
- dev-feature-channel_copy_1113-zdy
- dev-feature-declaration_category_0927-zdy
- dev-feature-qc_rpc_1011-zdy
- dev-feature-robes_qc_1003-zdy
- dev-feature-distribution_optimize_0919
- dev-team-service-based-on-v3.1.1
- dev-carlos
- dev-auth_service_interface_qjk
- dev-release
- dev-product
This package is auto-updated.
Last update: 2025-03-27 11:13:23 UTC
README
美不语微服务RPC接口库
1、安装
详细版本请看https://packagist.org/packages/meibuyu/rpc
// 开发时可使用开发版本 dev-xxxx
// 正式上线请打标签,使用正式vA.B.C版本
composer require meibuyu/rpc
2、使用Rpc
1. 创建代理消费者类,在微服务项目config/autoload/services配置文件内进行配置
每个服务只需要配置一次,按需配置
详细配置可查看hyperf自动创建代理消费者类文档
<?php
declare(strict_types=1);
$registry = [
'protocol' => 'consul',
'address' => env('CONSUL_URI', 'http://consul:8500'),
];
return [
'consumers' => [
[
// name 需与服务提供者的 name 属性相同,硬性规定name是接口名去掉Interface
'name' => 'UserService',
// 服务接口名, 即服务接口类
'service' => Meibuyu\Rpc\Service\Interfaces\User\UserServiceInterface::class,
// 从consul服务中心获取节点信息
'registry' => $registry,
]
]
];
2. 在代码中调用
/**
* @Inject()
* 依赖注入用户服务类
* @var UserServiceInterface
*/
private $userService;
public function test()
{
// 调用用户服务get方法
$user = $this->userService->get(1);
}
3、创建Rpc
1. 新建Rpc服务接口
- 拉取本项目至本地,在对应src/Service/Interfaces文件夹中创建接口文件
- 文件以项目名分文件夹,文件名必须以Interface结束,且注意分配相关项目的命名空间
- 方法名必须写注释,参数和返回数据类型必须写,方便使用者使用
<?php
namespace Meibuyu\Rpc\Service\Interfaces\Test;
interface TestServiceInterface
{
/**
* 测试接口
* @param int $id ID
* @param string $name 名称
* @return array
*/
public function test(int $type, string $number): array;
}
2. 为已有服务接口加入新方法/修改已有方法
- 在现有接口类文件上编写新方法,或者修改已有方法
- 方法名必须写注释,参数和返回数据类型必须写,方便使用者使用
3. 在服务提供方的项目代码中实现接口类方法
类名必须是接口类去除Interface后的名称
详细配置可查看hyperf定义服务提供者文档
<?php
namespace App\Rpc;
/**
* @RpcService(name="TestService", protocol="jsonrpc-http", server="jsonrpc-http", publishTo="consul")
*/
class TestService implements TestServiceInterface
{
/**
* 测试接口
* @param int $id ID
* @param string $name 名称
* @return array
*/
public function test(int $type, string $number): array
{
// 实现方法
return $name . $id;
}
}
4. 发布分支/发布版本
- 在接口类和方法实现后,提交代码至develop分支
- 服务提供者和服务使用者,同时更新项目的composer.json文件中meibuyu/rpc版本至开发版本dev-develop,进行测试
- 测试完成,提交合并请求至master分支,并让此项目维护者合并,并且打版本发布
- 服务提供者和服务使用者,同时更新项目的composer.json文件中meibuyu/rpc版本至正式版本
// "meibuyu/rpc": "dev-master", // 开发版本 // "meibuyu/rpc": "~1.0.0", // 正式版本
// 更新指定包 composer update meibuyu/rpc