Quellcode durchsuchen

新增等保相关配置 另外等保以后当生产环境来处理

王苗苗 vor 5 Monaten
Ursprung
Commit
fe02f93464

+ 117 - 0
slibra-admin/src/main/resources/application-dengbao.yml

@@ -0,0 +1,117 @@
+spring:
+    # redis 配置
+    redis:
+        # 地址
+        host: 192.168.9.98
+        # 端口,默认为6379
+        port: 6379
+        # 数据库索引
+        database: 0
+        # 密码
+        password: ^YHN&UJM
+        # 连接超时时间
+        timeout: 10s
+        lettuce:
+            pool:
+                # 连接池中的最小空闲连接
+                min-idle: 0
+                # 连接池中的最大空闲连接
+                max-idle: 8
+                # 连接池的最大数据库连接数
+                max-active: 8
+                # #连接池最大阻塞等待时间(使用负值表示没有限制)
+                max-wait: -1ms
+    # 数据源配置
+    datasource:
+        type: com.alibaba.druid.pool.DruidDataSource
+        driverClassName: com.mysql.cj.jdbc.Driver
+        druid:
+            # 主库数据源
+            master:
+                url: jdbc:mysql://localhost:3306/big_model?useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=GMT%2B8
+                username: root
+                password: Hongshan2024@longjiang
+            # 从库数据源
+            slave:
+                # 从数据源开关/默认关闭
+                enabled: true
+                driverClassName: com.microsoft.sqlserver.jdbc.SQLServerDriver
+                url: jdbc:sqlserver://10.0.3.53:1433;SelectMethod=Cursor;DatabaseName=信义
+                username: hongshan
+                password: hongshan
+            # 初始连接数
+            initialSize: 5
+            # 最小连接池数量
+            minIdle: 10
+            # 最大连接池数量
+            maxActive: 20
+            # 配置获取连接等待超时的时间
+            maxWait: 60000
+            # 配置连接超时时间
+            connectTimeout: 30000
+            # 配置网络超时时间
+            socketTimeout: 60000
+            # 配置间隔多久才进行一次检测,检测需要关闭的空闲连接,单位是毫秒
+            timeBetweenEvictionRunsMillis: 60000
+            # 配置一个连接在池中最小生存的时间,单位是毫秒
+            minEvictableIdleTimeMillis: 300000
+            # 配置一个连接在池中最大生存的时间,单位是毫秒
+            maxEvictableIdleTimeMillis: 900000
+            # 配置检测连接是否有效
+            validationQuery: SELECT 1
+            testWhileIdle: true
+            testOnBorrow: false
+            testOnReturn: false
+            webStatFilter:
+                enabled: true
+            statViewServlet:
+                enabled: true
+                # 设置白名单,不填则允许所有访问
+                allow:
+                url-pattern: /druid/*
+                # 控制台管理用户名和密码
+                login-username: slibra
+                login-password: 123456
+            filter:
+                stat:
+                    enabled: true
+                    # 慢SQL记录
+                    log-slow-sql: true
+                    slow-sql-millis: 1000
+                    merge-sql: true
+                wall:
+                    config:
+                        multi-statement-allow: true
+
+
+
+application:
+    ali-cloud:
+        enable-sms: true
+
+    qiYueSuoAccount:
+        serverUrl: https://openapi.qiyuesuo.cn
+        accessKey: njhjJYvh6B
+        accessSecret: wdodHgMGea9FruNd0kqbGKvCleKS3U
+        secretKey: kiU1m7YsnTqCVNgN
+
+    hostPath: http://ruoweiedu.com:5156/api/
+    bcosPath: http://ruoweiedu.com:5161/api/
+    qysCallServer: https://beta.fuxicarbon.com/api/qys/permit/
+
+    earnestPct: 0.01
+    deposit: 0.01
+    wechatPay:
+        orderNotifyUrl: https://beta.fuxicarbon.com/api/wechat-pay-records/orderNotify
+        depositNotifyUrl: https://beta.fuxicarbon.com/api/wechat-pay-records/depositNotify
+
+
+#生产环境配置
+big-model:
+    ip: 192.168.9.98
+    port: 17070
+    temperature: 0.7
+    topP: 0.7
+
+log:
+    logPath: /home/slibra/logs

+ 1 - 0
slibra-common/src/main/java/com/slibra/common/constant/MyConstants.java

@@ -14,6 +14,7 @@ public class MyConstants {
     public static final String SESSION_ID = "session_id";
     public static final String STOP_GEN_STREAM = "stop_gen_stream";
     public static final String PROD_ENVIRONMENT = "prod";
+    public static final String DENGBAO_ENVIRONMENT = "dengbao";
 
 
 

+ 1 - 1
slibra-quartz/src/main/java/com/slibra/quartz/task/AsyncTask.java

@@ -116,7 +116,7 @@ public class AsyncTask {
         this.xinyiCalculateMapper.insertTXinyiCalculate(xinyiCalculate);
 
         //2024年08月09日14:26:29  为了节省费用,测试环境关闭报警并增加手动触发报警操作
-        if(PROD_ENVIRONMENT.equalsIgnoreCase(environment)){
+        if(PROD_ENVIRONMENT.equalsIgnoreCase(environment) || DENGBAO_ENVIRONMENT.equalsIgnoreCase(environment)){
             //水质报警
             this.handleSZWarning(tXinyiIndustry, normConfig);
 

+ 3 - 3
slibra-quartz/src/main/java/com/slibra/quartz/task/GetRealTimeData.java

@@ -18,7 +18,7 @@ public class GetRealTimeData {
 
 
 //    public static final String[] queryTags = {"信义污水厂实际碳源加药量"};
-    public static final String[] queryTags = {"信义污水厂升级出水TN"};
+    public static final String[] queryTags = {"信义污水厂升级生化池回流泵1运行"};
 
     /**
      * 定时从工业库获取数据
@@ -34,8 +34,8 @@ public class GetRealTimeData {
 
         // 给定时间段的起始时间和结束时间
 
-        LocalDateTime startTime = LocalDateTime.parse("2024-08-20T11:00:00");
-        LocalDateTime endTime = LocalDateTime.parse("2024-08-20T14:20:00");
+        LocalDateTime startTime = LocalDateTime.parse("2024-10-30T09:00:00");
+        LocalDateTime endTime = LocalDateTime.parse("2024-10-30T09:05:00");
 
         // 每个小时的时间格式
         DateTimeFormatter formatter = DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm:ss");

+ 2 - 2
slibra-quartz/src/main/java/com/slibra/quartz/task/RyTask.java

@@ -667,7 +667,7 @@ public class RyTask
                         log.info("{}已经吧保存过了,无需重复保存***&&&···", testHour);
                 }
                 //2024年08月09日14:26:29  为了节省费用,测试环境关闭报警并增加手动触发报警操作
-                if(PROD_ENVIRONMENT.equalsIgnoreCase(environment)){
+                if(PROD_ENVIRONMENT.equalsIgnoreCase(environment) || DENGBAO_ENVIRONMENT.equalsIgnoreCase(environment)){
                     asyncTask.handleRobotWarning(uniqueList);
                 }
             }
@@ -753,7 +753,7 @@ public class RyTask
 //                    handleXinYiWarningsYC(cscodBzz, split, cscodGkz, BusinessEnum.WarningCategoryEnum.CS_COD_YC.getCode(), hour, normConfig);
                     continue;
                 }
-                if(PROD_ENVIRONMENT.equalsIgnoreCase(environment)){
+                if(PROD_ENVIRONMENT.equalsIgnoreCase(environment) || DENGBAO_ENVIRONMENT.equalsIgnoreCase(environment)){
                     //解析数据 处理报警 调研prompt 保存等
                     this.handlePredictorWarning(split, hour, task, tXinyiIndustries6, tXinyiRobots6, date);
                 }