lifuquan 2 년 전
부모
커밋
07f3ae2caa

BIN
doc/部署文档/正式环境/bin/aclTousu.jar


+ 239 - 0
doc/部署文档/正式环境/正式环境版本更新文档.md

@@ -0,0 +1,239 @@
+# 正式环境版本更新步骤
+
+1. 老版本下线
+
+    ```sh
+    # 部署路径 192.168.70.125:/data1/acl
+    sh stop.sh
+    # 备份旧版本
+    mv aclTousu.jar aclTousu.jar.bk
+    ```
+
+2. 备份数据库文件
+
+    ```sql
+    -- 备份
+    create table sqmdb_rpt.acl_area_0805 as select *from sqmdb_rpt.acl_area;
+    create table sqmdb_rpt.acl_city_0805 as select* from sqmdb_rpt.acl_city;
+    create table sqmdb_rpt.acl_district_0805 as select *from sqmdb_rpt.acl_district;
+    create table sqmdb_rpt.acl_role_0805 as select* from sqmdb_rpt.acl_role;
+    create table sqmdb_rpt.acl_user_0805 as select *from sqmdb_rpt.acl_user;
+    create table sqmdb_rpt.acl_user_role_0805 as select* from sqmdb_rpt.acl_user_role;
+    create table sqmdb_rpt.acl_user_role_city_0805 as select * from sqmdb_rpt.acl_user_role_city;
+
+    -- 如需回退操作(将正式表命名为back结尾的,然后将备份表改为正式表名)执行如下
+    alter table sqmdb_rpt.acl_area rename to acl_area_back;
+    alter table sqmdb_rpt.acl_city rename to acl_city_back;
+    alter table sqmdb_rpt.acl_district rename to acl_district_back;
+    alter table sqmdb_rpt.acl_role rename to acl_role_back;
+    alter table sqmdb_rpt.acl_user rename to acl_user_back;
+    alter table sqmdb_rpt.acl_user_role rename to acl_user_role_back;
+    alter table sqmdb_rpt.acl_user_role_city rename to acl_user_role_city_back;
+
+    alter table sqmdb_rpt.acl_area_0805 rename to acl_area;
+    alter table sqmdb_rpt.acl_city_0805 rename to acl_city;
+    alter table sqmdb_rpt.acl_district_0805 rename to acl_district;
+    alter table sqmdb_rpt.acl_role_0805 rename to acl_role;
+    alter table sqmdb_rpt.acl_user_0805 rename to acl_user;
+    alter table sqmdb_rpt.acl_user_role_0805 rename to acl_user_role;
+    alter table sqmdb_rpt.acl_user_role_city_0805 rename to acl_user_role_city;
+    ```
+
+3. 更新数据库文件
+
+4. 上传并启动新的jar包和配置文件
+
+    ```sh
+    # 启动
+    sh run.sh
+    ```
+
+5. 完成测试
+
+## 接口测试
+
+### 鉴权接口
+
+- 黑点库
+
+```http
+POST http://133.96.94.176:12128/api/verification
+Content-Type: application/json
+
+{
+  "token": "test_token_hebei",
+  "fromSystem": "test",
+  "system": "heidianku"
+}
+```
+
+- 流程
+
+```http
+POST http://133.96.94.176:12128/api/verification
+Content-Type: application/json
+
+{
+  "token": "test_token_abc",
+  "fromSystem": "test",
+  "system": "liucheng"
+}
+```
+
+- 大屏
+
+```http
+POST http://133.96.94.176:12128/api/verification
+Content-Type: application/json
+
+{
+  "token": "test_token_abc",
+  "fromSystem": "test",
+  "system": "daping"
+}
+```
+
+- 投诉分析
+
+```http
+POST http://133.96.94.176:12128/api/verification
+Content-Type: application/json
+
+{
+  "token": "test_token_abc",
+  "fromSystem": "test",
+  "system": "fenxi"
+}
+```
+
+- 投诉预测
+
+```http
+POST http://133.96.94.176:12128/api/verification
+Content-Type: application/json
+
+{
+"token": "test_token_abc",
+"fromSystem": "test",
+"system": "yuce"
+}
+```
+
+### 提供给流程系统的接口
+
+- 角色列表接口
+
+```http
+POST http://133.96.94.176:12128/rest/flow/api
+Content-Type: application/json
+
+{
+  "callType": "findRoleList",
+  "userName": "王"
+}
+```
+
+- 用户列表接口
+
+```http
+POST http://133.96.94.176:12128/rest/flow/api
+Content-Type: application/json
+
+{
+  "callType": "findToPage"
+}
+```
+
+- 根据登录账号获取用户
+
+```http
+POST http://133.96.94.176:12128/rest/flow/api
+Content-Type: application/json
+
+{
+  "callType": "getByLoginId",
+  "loginId": "test_handan"
+}
+```
+
+- 根据用户ID获取用户接口
+
+```http
+POST http://133.96.94.176:12128/rest/flow/api
+Content-Type: application/json
+
+{
+  "callType": "get",
+  "userId": "4"
+}
+```
+
+- 根据用户id获取角色id列表
+
+```http
+POST http://133.96.94.176:12128/rest/flow/api
+Content-Type: application/json
+
+{
+  "callType": "findRoleIdByUserId",
+  "userId": "4"
+}
+```
+
+- 根据角色id获取用户id列表
+
+```http
+POST http://133.96.94.176:12128/rest/flow/api
+Content-Type: application/json
+
+{
+  "callType": "findUserIdByRoleId",
+  "roleId": "3"
+}
+```
+
+- 多条件搜索用户
+
+```http
+POST http://133.96.94.176:12128/rest/flow/api
+Content-Type: application/json
+
+{
+  "callType": "findAuthorizedUser",
+  "roleId": "3"
+}
+```
+
+- 根据用户查找角色+城市信息
+
+```http
+POST http://192.168.50.3:12128/rest/flow/api
+Content-Type: application/json
+
+{
+  "callType": "getRoleCityByUserId",
+  "userId": "4"
+}
+```
+
+- 用户树形结构接口
+
+```http
+POST http://192.168.50.3:12128/rest/flow/api/userTree
+Content-Type: application/json
+
+{
+  "city": 130200,
+  "role": [4],
+  "user": []
+}
+```
+
+## 入口测试
+
+[大屏界面-DCN访问](http://133.96.94.108:12011?token=test_token_abc&fromSystem=test)
+
+[中屏--河北联通智慧网络运营平台](https://133.96.90.208/index)
+[大屏--网络数据运营平台](http://133.96.90.210:8089/login)
+
+wangyl5740 / Yunwang@2022

+ 16 - 16
doc/部署文档/测试环境/bin/application.properties

@@ -7,31 +7,31 @@ logging.level.com.nokia=debug
 # logging.file.name=log/acl.log
 
 # 测试环境数据库配置
-spring.datasource.driver-class-name=org.postgresql.Driver
-spring.datasource.url=jdbc:postgresql://192.168.50.5:5432/sqmmt
-spring.datasource.username=sqmdb
-spring.datasource.password=sqmdb_1QAZ
-
-# 测试环境redis配置 由于测试环境redis尚不具备,暂时先用正式环境的 10 顶替一下,具备后再调整
-spring.redis.host=192.168.70.125
-spring.redis.port=6379
-spring.redis.database=10
-spring.redis.password=Richr00t
-redis.timeoutSeconds=600
-
-# 正式环境数据源GP数据库配置
 # spring.datasource.driver-class-name=org.postgresql.Driver
-# spring.datasource.url=jdbc:postgresql://192.168.70.109:5432/sqmmt
+# spring.datasource.url=jdbc:postgresql://192.168.50.5:5432/sqmmt
 # spring.datasource.username=sqmdb
 # spring.datasource.password=sqmdb_1QAZ
 
-# 正式环境Redis配置
+# 测试环境redis配置 由于测试环境redis尚不具备,暂时先用正式环境的 10 顶替一下,具备后再调整
 # spring.redis.host=192.168.70.125
 # spring.redis.port=6379
-# spring.redis.database=0
+# spring.redis.database=10
 # spring.redis.password=Richr00t
 # redis.timeoutSeconds=600
 
+# 正式环境数据源GP数据库配置
+spring.datasource.driver-class-name=org.postgresql.Driver
+spring.datasource.url=jdbc:postgresql://192.168.70.109:5432/sqmmt
+spring.datasource.username=sqmdb
+spring.datasource.password=sqmdb_1QAZ
+
+# 正式环境Redis配置
+spring.redis.host=192.168.70.125
+spring.redis.port=6379
+spring.redis.database=0
+spring.redis.password=Richr00t
+redis.timeoutSeconds=600
+
 top.url=http://10.17.180.3/prod-api/verifySystem
 dop.url=http://10.17.180.5:8089/prod-api/verifySystem
 top.api.fromSystem=dh

+ 2 - 8
readme.md

@@ -1,14 +1,8 @@
 # 用户管理
 
-[acl提供给流程的接口](acl%E6%8F%90%E4%BE%9B%E7%BB%99%E6%B5%81%E7%A8%8B%E7%9A%84%E6%8E%A5%E5%8F%A3.md)
+- 下次更新记得在给每个接口添加log
 
-[acl提供给投诉大屏的接口](acl%E6%8F%90%E4%BE%9B%E7%BB%99%E6%8A%95%E8%AF%89%E5%A4%A7%E5%B1%8F%E7%9A%84%E6%8E%A5%E5%8F%A3.md)
-
-[acl提供给投诉分析的接口](acl%E6%8F%90%E4%BE%9B%E7%BB%99%E6%8A%95%E8%AF%89%E5%88%86%E6%9E%90%E7%9A%84%E6%8E%A5%E5%8F%A3.md)
-
-[acl提供给投诉预测的接口](acl%E6%8F%90%E4%BE%9B%E7%BB%99%E6%8A%95%E8%AF%89%E9%A2%84%E6%B5%8B%E7%9A%84%E6%8E%A5%E5%8F%A3.md)
-
-[acl提供给黑点库的接口](acl%E6%8F%90%E4%BE%9B%E7%BB%99%E9%BB%91%E7%82%B9%E5%BA%93%E7%9A%84%E6%8E%A5%E5%8F%A3.md)
+## 20220805 v1.9 上线
 
 ## 20220722 更新了提供给流程的接口,添加了提供给黑点库的接口 v1.8