Skip to content

Commit

Permalink
doc(sql): 增加迁移SQL ,适配 2.4.3
Browse files Browse the repository at this point in the history
  • Loading branch information
lltx committed Nov 10, 2024
1 parent b4cec4d commit 54ba243
Show file tree
Hide file tree
Showing 2 changed files with 571 additions and 7 deletions.
19 changes: 12 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,15 +1,20 @@
Nacos 从 2.2.0 版本开始,可通过 SPI 机制注入多数据源实现插件,并在引入对应数据源实现后,便可在 Nacos 启动时通过读取
application.properties 配置文件中 spring.datasource.platform 配置项选择加载对应多数据源插件.

![Nacos 插件化实现
](https://minio.pigx.top/oss/202212/1671179590.jpg)
![Nacos 插件化实现](https://minio.pigx.top/oss/202212/1671179590.jpg)

> Nacos 官方默认实现 MySQL、Derby ,其他类型数据库接入需要参考下文自己扩展。
![](https://minio.pigx.top/oss/202212/1671180565.png)

## 自定义dm8 插件

### 0. 达梦数据库脚本

- [nacos-dm.sql](https://raw.githubusercontent.com/pig-mesh/nacos-datasource-plugin-dm8/refs/heads/master/nacos-dm.sql)

```sql

### 1.增加dm8数据库插件

> 依赖已上传 maven 中央仓库,请勿使用阿里云代理
Expand All @@ -18,7 +23,7 @@ application.properties 配置文件中 spring.datasource.platform 配置项选
|---------------|-------|
| 2.2.0 - 2.3.0 | 0.0.2 |
| 2.3.1 - 2.3.2 | 0.0.3 |
| 2.4.0 - 2.4.1 | 0.0.4 |
| 2.4.0 - 2.4.3 | 0.0.4 |

```xml
<!--达梦数据库插件-->
Expand All @@ -43,13 +48,13 @@ application.properties 配置文件中 spring.datasource.platform 配置项选

## 3.配置 nacos 数据源链接信息

```
```yaml
db:
num: 1
url:
0: jdbc:dm://172.27.0.5:5236?schema=nacos
user: nacos
password: nacos@123
0: jdbc:dm://127.0.0.1:5236?schema=PIGXX_CONFIG
user: SYSDBA
password: SYSDBA
pool:
config:
driver-class-name: dm.jdbc.driver.DmDriver
Expand Down
Loading

0 comments on commit 54ba243

Please sign in to comment.