Skip to content

Commit

Permalink
Fix broken links
Browse files Browse the repository at this point in the history
  • Loading branch information
AlbumenJ committed Jan 2, 2024
1 parent 81389a2 commit 4d372ec
Show file tree
Hide file tree
Showing 8 changed files with 14 additions and 13 deletions.
1 change: 1 addition & 0 deletions .htmltest.yml
Expand Up @@ -34,4 +34,5 @@ IgnoreURLs: [
"https://www.oschina.net/question/3820517_2306822",
"https://www.webjars.org/documentation#servlet3",
"https://twitter.com/apachedubbo",
"https://www.qianmi.com/",
"https://developer.aliyun.com/article/"]
Expand Up @@ -6,7 +6,7 @@ type: docs

Reference article [**"Dubbo takes an important step towards cloud native application-level service discovery analysis"**](https://baijiahao.baidu.com/s?id=1669266413887039723&wfr=spider&for=pc)

Reference repository: [dubbo-go-samples/registry/serivcediscovery](https://github.com/apache/dubbo-go-samples/tree/master/registry/servicediscovery)
Reference repository: [dubbo-go-samples/registry/serivcediscovery](https://github.com/apache/dubbo-go-samples/tree/45a0d843b54e4922c240900e63516176cc7da4f6/registry/servicediscovery)

## Configuration

Expand Down Expand Up @@ -53,4 +53,4 @@ dubbo:
interface: com.apache.dubbo.sample.basic.IGreeter
```

Compared with the conventional configuration, after defining registry-type: service and defining the metadata center, application-level service registration/service discovery will be used.
Compared with the conventional configuration, after defining registry-type: service and defining the metadata center, application-level service registration/service discovery will be used.
Expand Up @@ -197,7 +197,7 @@ config {

### **the fifth step**

Run the nacos you downloaded, and refer to [https://github.com/seata/seata/tree/develop/script/config-center](https://gitee.com/link?target=https%3A%2F% 2Fgithub.com%2Fseata%2Fseata%2Ftree%2Fdevelop%2Fscript%2Fconfig-center) and modify the config.txt
Run the nacos you downloaded, and refer to [https://github.com/seata/seata/tree/develop/script/config-center](https://github.com/seata/seata/tree/develop/script/config-center) and modify the config.txt

```properties
#Only used by client
Expand Down Expand Up @@ -394,4 +394,4 @@ Run seata-server, after success, run your own service dubbo provider&consumer

Since seata-server supports the separation mode of computing and storage, and supports exposing service addresses to multiple registration centers, it only needs to be configured according to the sixth step and then expanded horizontally

For details, please visit: https://seata.io/
For details, please visit: https://seata.io/
8 changes: 4 additions & 4 deletions content/zh-cn/blog/integration/dubbo-fescar.md
Expand Up @@ -228,10 +228,10 @@ sh seata-server.sh -p 8091 -h 127.0.0.1 -m file

### Step 5: 运行例子

- 启动账户服务 ([DubboAccountServiceStarter](https://github.com/apache/dubbo-integration-cases/blob/master/99-integration/dubbo-samples-transaction/src/main/java/org/apache/dubbo/samples/starter/DubboAccountServiceStarter.java)).
- 启动库存服务 ([DubboStorageServiceStarter](https://github.com/apache/dubbo-samples/blob/master/99-integration/dubbo-samples-transaction/src/main/java/org/apache/dubbo/samples/starter/DubboStorageServiceStarter.java)).
- 启动订单服务 ([DubboOrderServiceStarter](https://github.com/apache/dubbo-samples/blob/master/99-integration/dubbo-samples-transaction/src/main/java/org/apache/dubbo/samples/starter/DubboOrderServiceStarter.java)).
- 运行BusinessService入口 ([DubboBusinessTester](https://github.com/apache/dubbo-samples/blob/master/99-integration/dubbo-samples-transaction/src/main/java/org/apache/dubbo/samples/starter/DubboBusinessTester.java)).
- 启动账户服务 ([DubboAccountServiceStarter](https://github.com/apache/dubbo-samples/tree/c6a704900501289973b174670beb788eceee5cc4/99-integration/dubbo-samples-transaction/src/main/java/org/apache/dubbo/samples/starter/DubboAccountServiceStarter.java)).
- 启动库存服务 ([DubboStorageServiceStarter](https://github.com/apache/dubbo-samples/tree/c6a704900501289973b174670beb788eceee5cc4/99-integration/dubbo-samples-transaction/src/main/java/org/apache/dubbo/samples/starter/DubboStorageServiceStarter.java)).
- 启动订单服务 ([DubboOrderServiceStarter](https://github.com/apache/dubbo-samples/tree/c6a704900501289973b174670beb788eceee5cc4/99-integration/dubbo-samples-transaction/src/main/java/org/apache/dubbo/samples/starter/DubboOrderServiceStarter.java)).
- 运行BusinessService入口 ([DubboBusinessTester](https://github.com/apache/dubbo-samples/tree/c6a704900501289973b174670beb788eceee5cc4/99-integration/dubbo-samples-transaction/src/main/java/org/apache/dubbo/samples/starter/DubboBusinessTester.java)).

### 相关项目
* Seata: https://github.com/seata/seata
Expand Down
Expand Up @@ -42,7 +42,7 @@ dubbo:
owner: zhaoyunxing
organization: dubbo-go
metadata-type: local # 元数据上报方式,默认为本地
metadata-report: # 元数据上报配置, 不包含此字段则不开启元数据上报,应用级服务发现依赖此字段,参考例子:https://github.com/apache/dubbo-go-samples/tree/master/registry/servicediscovery
metadata-report: # 元数据上报配置, 不包含此字段则不开启元数据上报,应用级服务发现依赖此字段,参考例子:https://github.com/apache/dubbo-go-samples/tree/45a0d843b54e4922c240900e63516176cc7da4f6/registry/servicediscovery
protocol: nacos # 元数据上报方式,支持nacos/zookeeper
address: 127.0.0.1:8848
username: ""
Expand Down
Expand Up @@ -12,7 +12,7 @@ description: Dubbo-go 3.0 应用级服务发现

参考文章[**《Dubbo 迈出云原生重要一步 应用级服务发现解析》**](https://baijiahao.baidu.com/s?id=1669266413887039723&wfr=spider&for=pc)

参考仓库:[dubbo-go-samples/registry/serivcediscovery](https://github.com/apache/dubbo-go-samples/tree/master/registry/servicediscovery)
参考仓库:[dubbo-go-samples/registry/serivcediscovery](https://github.com/apache/dubbo-go-samples/tree/45a0d843b54e4922c240900e63516176cc7da4f6/registry/servicediscovery)

## 配置方案

Expand Down
Expand Up @@ -15,7 +15,7 @@ weight: 2

参考文章[**《Dubbo 迈出云原生重要一步 应用级服务发现解析》**](https://baijiahao.baidu.com/s?id=1669266413887039723&wfr=spider&for=pc)

参考仓库:[dubbo-go-samples/registry/serivcediscovery](https://github.com/apache/dubbo-go-samples/tree/master/registry/servicediscovery)
参考仓库:[dubbo-go-samples/registry/serivcediscovery](https://github.com/apache/dubbo-go-samples/tree/45a0d843b54e4922c240900e63516176cc7da4f6/registry/servicediscovery)

## 配置方案

Expand Down Expand Up @@ -62,4 +62,4 @@ dubbo:
interface: com.apache.dubbo.sample.basic.IGreeter
```

相比于常规配置,定义好registry-type: service, 并且定义好元数据中心后,将会使用应用级服务注册/服务发现。
相比于常规配置,定义好registry-type: service, 并且定义好元数据中心后,将会使用应用级服务注册/服务发现。
Expand Up @@ -213,7 +213,7 @@ config {

### **第五步**

运行你下载的 nacos,并参考 [https://github.com/seata/seata/tree/develop/script/config-center](https://gitee.com/link?target=https%3A%2F%2Fgithub.com%2Fseata%2Fseata%2Ftree%2Fdevelop%2Fscript%2Fconfig-center) 的 config.txt 并修改
运行你下载的 nacos,并参考 [https://github.com/seata/seata/tree/develop/script/config-center](https://github.com/seata/seata/tree/develop/script/config-center) 的 config.txt 并修改

```properties
#仅client使用
Expand Down

0 comments on commit 4d372ec

Please sign in to comment.