exewen / nacos
A nacos component for Exewen.
v2.0.0
2025-03-24 02:53 UTC
Requires
- php: >=7.3
- ext-json: *
- exewen/facades: ^2
Requires (Dev)
- phpunit/phpunit: ^5.7 | ^6.5 | ^7.5 | ^8.4 | ^9.3
README
cp -rf ./publish/exewen /your_project/config
初始化
!defined('BASE_PATH_PKG') && define('BASE_PATH_PKG', dirname(__DIR__, 1)); # 设置配置保存/读取路径 \Exewen\Utils\FileUtil::setSnapshotPath(dirname(__DIR__) . "/config/nacos/env");
nacos
use Exewen\Nacos\NacosFacade; # 获取配置文件 NacosFacade::getConfig($this->namespaceId, $this->dataId, $this->group); # 获取并保存配置文件 NacosFacade::saveConfig($this->namespaceId, $this->dataId, $this->group); # 读取本地配置文件 $configPath = \Exewen\Utils\FileUtil::getSnapshotFile($this->namespaceId, $this->dataId, $this->group); # 注册实例 NacosFacade::setInstance($this->namespaceId, $this->serviceName, $this->group, $ip, $port); # 发送心跳 NacosFacade::setInstanceBeat($this->namespaceId, $this->serviceName, $this->group, $ip, $port); # 获取实例列表 NacosFacade::getInstance($this->namespaceId, $this->serviceName, $this->group, true);