@@ -11,16 +11,12 @@
Target Server Version : 50744 (5.7.44)
File Encoding : 65001
Date: 29 / 12 / 2024 04:18 :48
Date: 31 / 12 / 2024 19:30 :41
*/
CREATE DATABASE IF NOT EXISTS ` wfc_config_db ` DEFAULT CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci ;
SET NAMES utf8mb4 ;
SET FOREIGN_KEY_CHECKS = 0 ;
USE wfc_config_db ;
-- ----------------------------
-- Table structure for config_info
-- ----------------------------
@@ -45,55 +41,58 @@ CREATE TABLE `config_info` (
` encrypted_data_key ` text CHARACTER SET utf8 COLLATE utf8_bin NULL COMMENT ' 秘钥 ' ,
PRIMARY KEY ( ` id ` ) USING BTREE ,
UNIQUE INDEX ` uk_configinfo_datagrouptenant ` ( ` data_id ` , ` group_id ` , ` tenant_id ` ) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 76 CHARACTER SET = utf8 COLLATE = utf8_bin COMMENT = ' config_info ' ROW_FORMAT = DYNAMIC ;
) ENGINE = InnoDB AUTO_INCREMENT = 72 CHARACTER SET = utf8 COLLATE = utf8_bin COMMENT = ' config_info ' ROW_FORMAT = DYNAMIC ;
-- ----------------------------
-- Records of config_info
-- ----------------------------
INSERT INTO ` config_info ` VALUES ( 10 , ' application-dev .yml ' , ' DEFAULT_GROUP ' , ' spring:\n autoconfigure:\n exclude: com.alibaba.druid.spring.boot.autoconfigure.DruidDataSourceAutoConfigure\n mvc:\n pathmatch:\n matching-strategy: ant_path_matcher\n\n# feign 配置\nfeign:\n sentinel:\n enabled: fals e\n okhttp:\n enabled: tru e\n httpclient:\n enabled: true\n disable-ssl-validation: true\n client:\n config:\n default:\n connectTimeout: 1 0000\n readTimeout: 1 0000\n compression:\n request:\n enabled: true\n min-request-size: 8192\n response:\n enabled: true\n\n# 暴露监控端点\nmanagement:\n endpoints:\n web:\n exposure:\n include: \ ' * \ ' \n ' , ' 58dde4e3760499d3bac2d77a3a1e9018 ' , ' 2024-11-18 18:11:28 ' , ' 2024-11-18 18:11:28 ' , ' ' , ' 19 2.168.88 .14 ' , ' ' , ' wfc-dev ', ' 通用配置 ' , NULL , NULL , ' yaml ' , NULL , ' ' ) ;
INSERT INTO ` config_info ` VALUES ( 11 , ' wfc-gateway-dev .yml ' , ' DEFAULT_GROUP ' , ' spring:\n redis:\n host: wfc-redis\n port: 6379\n password:\n cloud:\n gateway:\n discovery:\n locator:\n lowerCaseServiceId: true\n enabled: true\n routes:\n # 认证中心\n - id: wfc-auth\n uri: lb://wfc-auth\n predicates:\n - Path=/auth/**\n filters:\n # 验证码处理\n - CacheRequestFilter\n - ValidateCodeFilter\n - StripPrefix=1\n # 代码生成\n - id: wfc-gen\n uri: lb://wfc-gen\n predicates:\n - Path=/code/**\n filters:\n - StripPrefix=1\n # 定时任务\n - id: wfc-job\n uri: lb://wfc-job\n predicates:\n - Path=/schedule/**\n filters:\n - StripPrefix=1\n # 系统模块\n - id: wfc-system\n uri: lb://wfc-system\n predicates:\n - Path=/system/**\n filters:\n - StripPrefix=1\n # 文件服务\n - id: wfc-file\n uri: lb://wfc-file\n predicates:\n - Path=/file/**\n filters:\n - StripPrefix=1\n # payment\n - id: wfc-payment\n uri: lb://wfc-payment\n predicates:\n - Path=/payment/**\n filters:\n - StripPrefix=1 \n\n# 安全配置\nsecurity:\n # 验证码\n captcha:\n enabled: true\n type: math\n # 防止XSS攻击\n xss:\n enabled: true\n excludeUrls:\n - /system/notice\n # 不校验白名单\n ignore:\n whites:\n - /auth/logout\n - /auth/login\n - /auth/register\n - /*/v2/api-docs\n - /csrf\n ' , ' 7b1fad1543297684976990ac9f3baca2 ' , ' 2024-11-18 18:11:28 ' , ' 2024-12-26 09:45:29 ' , NULL , ' 172.100.88 .1 ' , ' ' , ' wfc-dev ', ' 网关模块 ' , ' ' , ' ' , ' yaml ' , ' ' , ' ' ) ;
INSERT INTO ` config_info ` VALUES ( 12 , ' wfc-auth-dev .yml ' , ' DEFAULT_GROUP ' , ' spring:\n redis:\n host: wfc-redis\n port: 6379\n password:\n ' , ' c3f5481240e7581cc397f5c7918fd785 ' , ' 2024-11-18 18:11:28 ' , ' 2024-12-13 21:42:21 ' , NULL , ' 19 2.168.2.116 ' , ' ' , ' wfc-dev ', ' 认证中心 ' , ' ' , ' ' , ' yaml ' , ' ' , ' ' ) ;
INSERT INTO ` config_info ` VALUES ( 13 , ' wfc-monitor-dev .yml ' , ' DEFAULT_GROUP ' , ' # spring\nspring:\n security:\n user:\n name: wfc\n password: 123456\n boot:\n admin:\n ui:\n title: \n ' , ' 6494d8b29fceace33c96fc69cdaf0ec6 ' , ' 2024-11-18 18:11:28 ' , ' 2024-12-13 21:42:39 ' , NULL , ' 19 2.168.2.116 ' , ' ' , ' wfc-dev ', ' 监控中心 ' , ' ' , ' ' , ' yaml ' , ' ' , ' ' ) ;
INSERT INTO ` config_info ` VALUES ( 14 , ' wfc-system-dev .yml ' , ' DEFAULT_GROUP ' , ' # spring配置\nspring:\n redis:\n host: wfc-redis\n port: 6379\n password:\n datasource:\n druid:\n stat-view-servlet:\n enabled: true\n loginUsername: admin\n loginPassword: 123456\n dynamic:\n druid:\n initial-size: 5\n min-idle: 5\n maxActive: 20\n maxWait: 60000\n connectTimeout: 30000\n socketTimeout: 60000\n timeBetweenEvictionRunsMillis: 60000\n minEvictableIdleTimeMillis: 300000\n validationQuery: SELECT 1 FROM DUAL\n testWhileIdle: true\n testOnBorrow: false\n testOnReturn: false\n poolPreparedStatements: true\n maxPoolPreparedStatementPerConnectionSize: 20\n filters: stat,slf4j\n connectionProperties: druid.stat.mergeSql\\=true;druid.stat.slowSqlMillis\\=5000\n datasource:\n # 主库数据源\n master:\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: jdbc:mysql://wfc-mysql:3306/wfc_system_db?useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=GMT%2B8\n username: root\n password: 123456\n # 从库数据源\n # slave:\n # username: \n # password: \n # url: \n # driver-class-name: \n\n# mybatis配置\nmybatis:\n # 搜索指定包别名\n typeAliasesPackage: org.wfc.system\n # 配置mapper的扫描, 找到所有的mapper.xml映射文件\n mapperLocations: classpath:mapper/**/*.xml\n\n# swagger配置\nswagger:\n title: 系统模块接口文档\n license: Powered By wfc\n licenseUrl: https://wfc.vip ' , ' a355587121f711511c9010a4a8c0d797 ' , ' 2024-11-18 18:11:28 ' , ' 2024-12-13 21:43:19 ' , NULL , ' 192.168.2.116 ' , ' ' , ' wfc-dev ', ' 系统模块 ' , ' ' , ' ' , ' yaml ' , ' ' , ' ' ) ;
INSERT INTO ` config_info ` VALUES ( 15 , ' wfc-gen-dev .yml ' , ' DEFAULT_GROUP ' , ' # spring配置\nspring:\n redis:\n host: wfc-redis\n port: 6379\n password:\n datasource:\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: jdbc:mysql://wfc-mysql:3306/wfc_system_db?useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=GMT%2B8\n username: root\n password: 123456\n\n# mybatis配置\nmybatis:\n # 搜索指定包别名\n typeAliasesPackage: org.wfc.gen.domain\n # 配置mapper的扫描, 找到所有的mapper.xml映射文件\n mapperLocations: classpath:mapper/**/*.xml\n\n# swagger配置\nswagger:\n title: 代码生成接口文档\n license: Powered By wfc\n licenseUrl: https://wfc.vip\n\n# 代码生成\ngen:\n # 作者\n author: wfc\n # 默认生成包路径 system 需改成自己的模块名称 如 system monitor tool\n packageName: org.wfc.system\n # 自动去除表前缀, 默认是false\n autoRemovePre: false\n # 表前缀(生成类名不会包含表前缀,多个用逗号分隔)\n tablePrefix: sys_\n ' , ' 5ec7d9b8eb46eca656316e5f817aadb2 ' , ' 2024-11-18 18:11:28 ' , ' 2024-12-13 21:47:16 ' , NULL , ' 192.168.2.116 ' , ' ' , ' wfc-dev ', ' 代码生成 ' , ' ' , ' ' , ' yaml ' , ' ' , ' ' ) ;
INSERT INTO ` config_info ` VALUES ( 16 , ' wfc-job-dev .yml ' , ' DEFAULT_GROUP ' , ' # spring配置\nspring:\n redis:\n host: wfc-redis\n port: 6379\n password: \n datasource:\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: jdbc:mysql://wfc-mysql:3306/wfc_system_db?useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=GMT%2B8\n username: root\n password: 123456\n\n# mybatis配置\nmybatis:\n # 搜索指定包别名\n typeAliasesPackage: org.wfc.job.domain\n # 配置mapper的扫描, 找到所有的mapper.xml映射文件\n mapperLocations: classpath:mapper/**/*.xml\n\n# swagger配置\nswagger:\n title: 定时任务接口文档\n license: Powered By wfc\n licenseUrl: https://wfc.vip\n ' , ' 1376deec876c0878df743b4d96c7f125 ' , ' 2024-11-18 18:11:28 ' , ' 2024-12-13 21:47:34 ' , NULL , ' 192.168.2.116 ' , ' ' , ' wfc-dev ', ' 定时任务 ' , ' ' , ' ' , ' yaml ' , ' ' , ' ' ) ;
INSERT INTO ` config_info ` VALUES ( 17 , ' wfc-file-dev .yml ' , ' DEFAULT_GROUP ' , ' # 本地文件上传 \nfile:\n domain: http://127.0.0.1:9300\n path: /home/wfc/upload\n prefix: /statics\n\n# FastDFS配置\nfdfs:\n domain: http://8.129.231.12\n soTimeout: 3000\n connectTimeout: 2000\n trackerList: 8.129.231.12:22122\n\n# Minio配置\nminio:\n url: http://8.129.231.12:9000\n accessKey: minioadmin\n secretKey: minioadmin\n bucketName: test ' , ' 580197933f0f0b2ba468a0916b911d4b ' , ' 2024-11-18 18:11:28 ' , ' 2024-12-13 21:44 :58 ' , NULL , ' 19 2.168.2.116 ' , ' ' , ' wfc-dev ', ' 文件服务 ' , ' ' , ' ' , ' yaml ' , ' ' , ' ' ) ;
INSERT INTO ` config_info ` VALUES ( 1 9, ' application-test .yml' , ' DEFAULT_GROUP ' , ' spring:\n autoconfigure:\n exclude: com.alibaba.druid.spring.boot.autoconfigure.DruidD ataS ourceAutoConfigure\n mvc:\n pathmatch:\n matching-strategy: ant_path_matcher\n # 资源信息\n messages:\n # 国际化资源文件路径\n basename: i18n/messages\n\n# feign 配置\nfeign:\n sentinel:\n enabled: true \n okhttp:\n enabled: false\n httpclient:\n enabled: true\n disable-ssl-validation: true\n client:\n config:\n default:\n connectTimeout: 60000\n readTimeout: 60000\n compression:\n request:\n enabled: true\n min-request-size: 8192\n respons e:\n enabled: true\n\n# 暴露监控端点\nmanagement:\n endpoints:\n web:\n exposure:\n include: \ ' * \ ' \n ' , ' 333d0b5dd60a01407c0107d0e4aec172 ' , ' 2024-11-18 18:11:56 ' , ' 2024-11-28 20:03:55 ' , NULL , ' 19 2.168.88 .14 ' , ' ' , ' wfc-test ', ' 通用配置 ' , ' ' , ' ' , ' yaml ' , ' ' , ' ' ) ;
INSERT INTO ` config_info ` VALUES ( 2 0, ' wfc-gateway-test .yml ' , ' DEFAULT_GROUP ' , ' spring:\n redis:\n host: wfc-redis\n port: 6379\n password:\n cloud:\n gateway:\n discovery:\n locator: \n lowerCaseServiceId: true\n enabled: true\n routes :\n # 认证中心 \n - id: wfc-auth\n uri: lb://wfc-auth\n predicates:\n - Path=/auth/** \n filters:\n # 验证码处理\n - CacheRequestFilter\n - ValidateCodeFilter\n - StripPrefix=1\n # 代码生成\n - id: wfc-gen \n uri : lb://wfc-gen \n p redic ates:\n - Path=/code/**\n filters:\n - StripPrefix=1\n # 定时任务\n - id: wfc-job\n uri: lb://wfc-job\n predicates:\n - Path=/schedule/** \n fil ters :\n - StripPrefix=1\n # 系统模块\n - id: wfc-system \n uri : lb ://wfc-s ystem\n predicates:\n - Path=/system/**\n filters:\n - StripPrefix=1\n # 用户模块 \n - id: wfc-modules-user\n uri: lb://wfc-modules-user \n predicates :\n - Path=/u/**\n filters:\n - StripPrefix=1\n # 文件服务\n - id: wfc-file\n uri: lb://wfc-file\n predicates:\n - Path=/file/**\n filters:\n - StripPrefix=1\n # payment\n - id: wfc-payment\n uri: lb://wfc-payment\n predicates:\n - Path=/payment/**\n filters:\n - StripPrefix=1 \n\n# 安全配置\nsecurity:\n # 验证码\n captcha:\n enabled: true\n mailEnabled: true\n type: math\n # 防止XSS攻击\n xss:\n enabled: true\n excludeUrls:\n - /system/notice\n # 不校验白名单\n ignore:\n whites:\n - /auth/logout\n - /auth/ logi n\n - /auth/register\n - /*/v2/api-docs\n - /*/v3/api-docs\n - /csrf\n - /system/email/code\n - /system/user/checkRepeat\n - /u/user/checkRepeat\n\n# springdoc配置\nspringdoc:\n webjars:\n # 访问前缀\n prefix: ' , ' eec87fd6097c3d5c35d88da9f8280f10 ' , ' 2024-11-18 18:11:56 ' , ' 2024-12-26 09:45:05 ' , NULL , ' 172.100.88 .1 ' , ' ' , ' wfc-test ', ' 网关模块 ' , ' ' , ' ' , ' yaml ' , ' ' , ' ' ) ;
INSERT INTO ` config_info ` VALUES ( 2 1, ' wfc-auth-test.yml ' , ' DEFAULT_GROUP ' , ' spring: \n redis:\n host: wfc-redis\n port: 6379\n password:\n# springdoc配置\nspringdoc:\n gatewayUrl: http://wfc-gateway:8080/${spring.application.name}\n api-docs:\n # 是否开启接口文档\n enabled: true\n info:\n # 标题\n title: \ ' 授 权 模 块 接 口 文 档 \ ' \n # 描述\n description: \ ' 授 权 模 块 接 口 描 述 \ ' \n # 作者信息\n contact:\n name: wfc\n url: https://wfc.vip\n ' , ' d77ab6f041b802a9d077756fa36a1fe7 ' , ' 2024-11-18 18:11:56 ' , ' 2024-12-13 21:49:53 ' , NULL , ' 19 2.168.2.116 ' , ' ' , ' wfc-test ', ' 认证中心 ' , ' ' , ' ' , ' yaml ' , ' ' , ' ' ) ;
INSERT INTO ` config_info ` VALUES ( 22 , ' wfc-monitor-test.yml ' , ' DEFAULT_GROUP ' , ' # spring\nspring:\n security:\n user:\n name: wfc\n password: 123456\n boot:\n admin:\n ui:\n title: \n ' , ' 6494d8b29fceace33c96fc69cdaf0ec6 ' , ' 2024-11-18 18:11:56 ' , ' 2024-12-13 21:50:08 ' , NULL , ' 192.168.2.116 ' , ' ' , ' wfc-test ' , ' 监控中心 ' , ' ' , ' ' , ' yaml ' , ' ' , ' ' ) ;
INSERT INTO ` config_info ` VALUES ( 23 , ' wfc-system-test .yml' , ' DEFAULT_GROUP ' , ' # spring配置\nspring:\n redis:\n host: wfc-redis\n port: 6379\n password:\n datasource:\n druid:\n stat-view-servlet:\n enabled: true\n loginUsername: admin\n loginPassword: 123456\n dynamic:\n druid:\n initial-size: 5\n min-idle: 5\n maxActive: 20\n maxWait: 60000\n connectTimeout: 30000\n socketTimeout: 60000 \n timeBetweenEvictionRunsMillis: 60000\n minEvictableIdleTimeMillis: 300000\n validationQuery: SELECT 1 FROM DUAL\n testWhileIdle: true\n testOnBorrow: false\n testOnReturn: false\n poolPreparedStatements: true\n maxPoolPreparedStatementPerConnectionSize: 20\n filters: stat,slf4j\n connectionProperties: druid.stat.mergeSql\\=true;druid.stat.slowSqlMillis\\=5000\n datasource:\n # 主库数据源\n master:\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: jdbc:mysql://wfc-mysql:3306/wfc_system_db?useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=GMT%2B8\n username: root\n password: 123456\n # 从库数据源\n # slave:\n # username: \n # password: \n # url: \n # driver-class-name: \n\n# mybatis配置\nmybatis:\n # 搜索指定包别名\n typeAliasesPackage: org.wfc.system\n # 配置mapper的扫描, 找到所有的mapper.xml映射文件\n mapperLocations: classpath:mapper/**/*.xml\n\n# 邮箱配置\nmail:\n enabled: true\n host: smtp.qq.com\n port: 465\n # 是否需要用户名密码验证\n auth: true\n # 发送方, 遵循RFC-822标准\n from: 707821112@qq.com\n # 用户名( 注意: 如果使用foxmail邮箱, 此处user为qq号) \n user: 707821112@qq.com\n # 密码( 注意, 某些邮箱需要为SMTP服务单独设置密码, 详情查看相关帮助) \n pass: zcbontiutwvebedb\n # 使用 STARTTLS安全连接, STARTTLS是对纯文本通信协议的扩展。\n starttlsE nable: true\n # 使用SSL安全连接\n sslEnable: true\n # SMTP超时时长, 单位毫秒, 缺省值不超时\n timeout: 0\n # Socket连接超时值, 单位毫秒, 缺省值不超时\n connectionTimeout: 0\n\n# springdoc配置\nspringdoc:\n gatewayUrl: http://wfc-gateway:8080/${spring.application.name}\n api-docs:\n # 是否开启接口文档\n enabled: true\n info:\n # 标题\n title: \ ' 系 统 模 块 接 口 文 档 \ ' \n # 描述\n description: \ ' 系 统 模 块 接 口 描 述 \ ' \n # 作者信息\n contact:\n name: wfc\n url: https://wfc.vip ' , ' 7cafbcc15abd4a77ddfa4e133921aaae ' , ' 2024-11-18 18:11:56 ' , ' 2024-12 -13 21:51:19 ' , NULL , ' 192.168.2.116 ' , ' ' , ' wfc-test ' , ' 系统模块 ' , ' ' , ' ' , ' yaml ' , ' ' , ' ' ) ;
INSERT INTO ` config_info ` VALUES ( 24 , ' wfc-gen-test .yml ' , ' DEFAULT_GROUP ' , ' # spring配置\n spring:\n redis:\n host: wfc-redis\n port: 6379\n password:\n datasource:\n driver-class-name: com.mysql.cj.jdbc.Driver \n url: jdbc:mysql://wfc-mysql:3306/wfc_system_db?useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=GMT%2B8\n username: root\n password: 123456\n\n# mybatis配置\nmybatis:\n # 搜索指定包别名\n typeAliasesPackage: org.wfc.gen.domain\n # 配置mapper的扫描, 找到所有的mapper.xml映射文件\n mapperLocations: classpath:mapper/**/*.xml\n\n# swagger配置\nswagger:\n title: 代码生成接口文档\n license: Powered By wfc\n licenseUrl: https://wfc.vip\n\n# 代码生成\ngen :\n # 作者 \n author: wfc\n # 默认生成包路径 system 需改成自己的模块名称 如 system monitor tool\n packageName: org.wfc.system\n # 自动去除表前缀, 默认是false\n autoRemovePre: false\n # 表前缀(生成类名不会包含表前缀,多个用逗号分隔)\n tablePrefix: sys_\n ' , ' 5ec7d9b8eb46eca656316e5f817aadb 2' , ' 2024-11-18 18:11:56 ' , ' 2024-12-13 21:51:58 ' , NULL , ' 19 2.168.2.116 ' , ' ' , ' wfc-test ' , ' 代码生成 ' , ' ' , ' ' , ' yaml ' , ' ' , ' ' ) ;
INSERT INTO ` config_info ` VALUES ( 25 , ' wfc-job-test .yml ' , ' DEFAULT_GROUP ' , ' # spring配置\n spring:\n redis:\n host: wfc-redis\n port: 6379\n password: \n datasource:\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: jdbc:mysql://wfc-mysql:3306/wfc_system_db?useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=GMT%2B8\n username: root\n password: 123456\n\n# mybatis配置\nmybatis:\n # 搜索指定包别名\n typeAliasesPackage: org.wfc.job.domain\n # 配置mapper的扫描, 找到所有的mapper.xml映射文件\n mapperLocations: classpath:mapper/**/*.xml\n\n# swagger配置\nswagger:\n title: 定时任务接口文档\n license: Powered By wfc\n licenseUrl: https://wfc.vip\n ' , ' 1376deec876c0878df743b4d96c7f12 5' , ' 2024-11-18 18:11:56 ' , ' 2024-12-13 21:53:03 ' , NULL , ' 192.168.2.116 ' , ' ' , ' wfc-test ' , ' 定时任务 ' , ' ' , ' ' , ' yaml ' , ' ' , ' ' ) ;
INSERT INTO ` config_info ` VALUES ( 26 , ' wfc-file-test .yml ' , ' DEFAULT_GROUP ' , ' # 本地文件上传 \nfile:\n domain: http://127.0.0.1:9300\n path: /home/wfc/upload\n prefix: /statics\n\n# FastDFS配置\nfdfs:\n domain: http://8.129.231.12\n soTimeout: 3000\n connectTimeout: 2000\n trackerList: 8.129.231.12:22122\n\n# Minio配置\n minio :\n url: http://8.129.231.12:9000\n accessKey: minioadmin \n secretKey: minioadmin\n bucketName: test ' , ' 580197933f0f0b2ba468a0916b911d4b ' , ' 2024-11-18 18:11:56 ' , ' 2024-12-13 21:53:22 ' , NULL , ' 192.168.2.116 ' , ' ' , ' wfc-test ' , ' 文件服务 ' , ' ' , ' ' , ' yaml ' , ' ' , ' ' ) ;
INSERT INTO ` config_info ` VALUES ( 41 , ' application-prod .yml' , ' DEFAULT_GROUP ' , ' spring:\n autoconfigure:\n exclude: com.alibaba.druid.spring.boot.autoconfigure.DruidD ataS ourceAutoConfigure\n mvc :\n pathmatch:\n matching-strategy: ant_path_matcher\n # 资源信息\n messages:\n # 国际化资源文件路径\n basename: i18n/messages\n \n# feign 配置\nfeign: \n sentinel:\n enabled: true\n okhttp: \n enabled: false\n httpclient:\n enabled: true\n disable-ssl-validation: true\n client:\n config:\n default:\n connectTimeout: 60000\n readTimeout: 60000\n compression:\n request:\n enabled: true\n min-request-size: 8192\n response:\n enabled: true\n\n# 暴露监控端点\nmanagement:\n endpoints:\n web:\n exposure:\n include: \ ' * \ ' \n ' , ' 3da71d069327a6468c46292591fe5142 ' , ' 2024-12 -13 11:52:34 ' , ' 2024-12-26 09:40:07 ' , NULL , ' 17 2.100.88.1 ' , ' ' , ' wfc-prod ' , ' 通用配置 ' , ' ' , ' ' , ' yaml ' , ' ' , ' ' ) ;
INSERT INTO ` config_info ` VALUES ( 4 2, ' wfc-gateway-prod .yml ' , ' DEFAULT_GROUP ' , ' spring:\n redis:\n host: wfc-redis\n port: 6379\n password:\n cloud:\n gateway :\n discovery:\n locator:\n lowerCaseServiceId: true\n enabled: true\n routes:\n # 认证中心\n - id: wfc-auth\n uri: lb://wfc-auth\n predicates:\n - Path=/auth/**\n filters:\n # 验证码处理\n - CacheRequestFilter\n - ValidateCodeFilter\n - StripPrefix=1\n # 代码生成\n - id: wfc-gen\n uri: lb://wfc-gen\n predicates:\n - Path=/code/**\n filters:\n - StripPrefix=1\n # 定时任务\n - id: wfc-job\n uri: lb://wfc-job\n predicates:\n - Path=/schedule/**\n filters:\n - StripPrefix=1\n # 系统模块\n - id: wfc-system\n uri: lb://wfc-system\n predicates:\n - Path=/system/**\n filters:\n - StripPrefix=1\n # 用户模块\n - id: wfc-user\n uri: lb://wfc-us er\n predicates:\n - Path=/u/**\n filters:\n - StripPrefix=1 \n # 文件服务\n - id: wfc-file\n uri: lb://wfc-file\n predicates:\n - Path=/file/**\n filters:\n - StripPrefix=1\n # payment\n - id: wfc-payment\n uri: lb://wfc-payment\n predicates:\n - Path=/payment/**\n filters:\n - StripPrefix=1 \n\n# 安全配置\nsecurity:\n # 验证码\n captcha:\n enabled: true\n type: math\n # 防止XSS攻击\n xss:\n enabled: true\n excludeUrls:\n - /system/notice\n # 不校验白名单\n ignore:\n whites:\n - /auth/logout\n - /auth/login\n - /auth/register\n - /*/v2/api-docs\n - /csrf\n ' , ' 50c8bf5bbc07402c51b4d696ddb64a89 ' , ' 2024-12 -13 11:52:34 ' , ' 2024-12-28 19:16:10 ' , NULL , ' 17 2.19.0.1 ' , ' ' , ' wfc-prod ' , ' wfc-gateway production ' , ' ' , ' ' , ' yaml ' , ' ' , ' ' ) ;
INSERT INTO ` config_info ` VALUES ( 43 , ' wfc-auth-prod .yml ' , ' DEFAULT_GROUP ' , ' spring:\n redis:\n host: wfc-redis\n port: 6379\n password:\n ' , ' c3f5481240e7581cc397f5c7918fd78 5 ' , ' 2024-12 -13 11:52:34 ' , ' 2024-12-13 1 1:53 :35 ' , NULL , ' 192.168.2.116 ' , ' ' , ' wfc-prod ' , ' 认证中心 ' , ' ' , ' ' , ' yaml ' , ' ' , ' ' ) ;
INSERT INTO ` config_info ` VALUES ( 44 , ' wfc-monitor-prod .yml ' , ' DEFAULT_GROUP ' , ' # spring\nspring:\n security:\n user:\n name: wfc\n password: 123456\n boot:\n ad min:\n ui:\n title: visual monitor\n ' , ' c8f896d284d5328aab16baeb81a3685c ' , ' 2024-12 -13 11:52:34 ' , ' 2024-12-13 1 1:54:04 ' , NULL , ' 192.168.2.116 ' , ' ' , ' wfc-prod ' , ' 监控中心 ' , ' ' , ' ' , ' yaml ' , ' ' , ' ' ) ;
INSERT INTO ` config_info ` VALUES ( 45 , ' wfc-system-prod .yml ' , ' DEFAULT_GROUP ' , ' # spring配置\nspring:\n redis:\n host: wfc-redis\n port: 6379\n password:\n datasource:\n druid:\n stat-view-servlet:\n enabled: true\n loginUsername: admin\n loginPassword: 123456\n dynamic:\n druid:\n initial-size: 5\n min-idle: 5\n maxActive: 20\n maxWait: 60000\n connectTimeout: 30000\n socketTimeout: 60000\n timeBetweenEvictionRunsMillis: 60000\n minEvictableIdleTimeMillis: 300000\n validationQuery: SELECT 1 FROM DUAL\n testWhileIdle: true\n testOnBorrow: false\n testOnReturn: false\n poolPreparedStatements: true\n maxPoolPreparedStatementPerConnectionSize: 20\n filters: stat,slf4j\n connectionProperties: druid.stat.mergeSql\\=true;druid.stat.slowSqlMillis\\=5000\n datasource:\n # 主库数据源\n master:\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: jdbc:mysql://wfc-mysql:3306/wfc_system _db?useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=GMT%2B8\n username: root\n password: 123456\n # 从库数据源\n # slave:\n # username: \n # password: \n # url: \n # driver-class-name: \n\n# mybatis配置\nmybatis:\n # 搜索指定包别名\n typeAliasesPackage: org.wfc.system \n # 配置mapper的扫描, 找到所有的mapper.xml映射文件\n mapperLocations: classpath:mapper/**/*.xml\n\n# swagger配置\nswagger:\n title: 系统模块接口文档\n license: Powered By wfc\n licenseUrl: https://wfc.vip ' , ' a355587121f711511c9010a4a8c0d797 ' , ' 2024-12-13 11:52:34 ' , ' 2024-12-13 11:54:49 ' , NULL , ' 19 2.168.2.116 ' , ' ' , ' wfc-prod ' , ' 系统 模块' , ' ' , ' ' , ' yaml ' , ' ' , ' ' ) ;
INSERT INTO ` config_info ` VALUES ( 46 , ' wfc-gen-prod .yml ' , ' DEFAULT_GROUP ' , ' # spring配置\nspring:\n redis:\n host: wfc-redis\n port: 6379\n password:\n datasource:\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: jdbc:mysql://wfc-mysql:3306/wfc_system _db?useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=GMT%2B8\n username: root\n password: 123456\n\n# mybatis配置\nmybatis:\n # 搜索指定包别名\n typeA liasesP ackage: org.wfc.gen.domain \n # 配置mapper的扫描, 找到所有的mapper.xml映射文件\n mapperL ocations: classpath:mapper/**/*.xml\n\n# swagger配置\nswagger:\n title: 代码生成 接口文档\n license: Powered By wfc\n licenseUrl: https://wfc.vip\n\n# 代码生成\ngen:\n # 作者\n author: wfc\n # 默认生成包路径 system 需改成自己的模块名称 如 system monitor tool\n packageName: org.wfc.system\n # 自动去除表前缀, 默认是false\n autoRemovePre: false \n # 表前缀(生成类名不会包含表前缀,多个用逗号分隔) \n tablePrefix: sys_\n ' , ' 5ec7d9b8eb46eca656316e5f817aadb2 ' , ' 2024-12-13 11:52:34 ' , ' 2024-12-1 3 11 :55:28 ' , NULL , ' 19 2.168.2.116 ' , ' ' , ' wfc-prod ' , ' 代码生成 ' , ' ' , ' ' , ' yaml ' , ' ' , ' ' ) ;
INSERT INTO ` config_info ` VALUES ( 47 , ' wfc-job-prod.yml ' , ' DEFAULT_GROUP ' , ' # spring配置\nspring:\n redis:\n host: wfc-redis\n port: 6379\n password: \n datasource:\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: jdbc:mysql://wfc-mysql:3306/ wfc_ system_db?useUnicode=true&cha rac terEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=GMT%2B8\n username: root\n password: 123456\n\n# mybatis配置\nmybatis:\n # 搜索指定包别名\n typeAliasesPackage: org. wfc. job.domain\n # 配置mapper的扫描, 找到所有的mapper.xml映射文件\n mapperLocations: classpath:mapper/**/*.xml\n\n# swagger配置\nswagger:\n title: 定时任务接口文档\n license: Powered By wfc\n licenseUrl: https://wfc.vip\n ' , ' 1376deec876c0878df743b4d96c7f125 ' , ' 2024-12-1 3 11:52:34 ' , ' 2024-12-1 3 11:56:07 ' , NULL , ' 192.168.2.116 ' , ' ' , ' wfc-prod ' , ' 定时任务 ' , ' ' , ' ' , ' yaml ' , ' ' , ' ' ) ;
INSERT INTO ` config_info ` VALUES ( 48 , ' wfc-file-prod.yml ' , ' DEFAULT_GROUP ' , ' # 本地文件上传 \nfile:\n domain: http://127.0.0.1:9300\n path: /home/wfc/upload\n prefix: /statics\n\n# FastDFS配置\nfdfs:\n domain: http://8.129.231.12\n soTimeout: 3000\n connectTimeout: 2000\n trackerList: 8.129.231.12:22122\n\n# Minio配置\nminio:\n url: http://8.129.231.12:9000\n accessKey: minioadmin\n secretKey: minioadmin\n bucketName: test ' , ' 580197933f0f0b2ba468a0916b911d4b ' , ' 2024-12-13 11:52:34 ' , ' 2024-12-13 11:57:18 ' , NULL , ' 192.168.2.116 ' , ' ' , ' wfc-prod ' , ' 文件服务 ' , ' ' , ' ' , ' yaml ' , ' ' , ' ' ) ;
INSERT INTO ` config_info ` VALUES ( 5 4, ' wfc-user-prod .yml' , ' DEFAULT_GROUP ' , ' # spring配置\nspring:\n redis:\n host: wfc-redis\n port: 6379\n password:\n d atas ource:\n druid:\n stat-view-servlet:\n enabled: true\n loginUsername: admin\n loginPassword: 123456\n dynamic:\n druid:\n initial-size: 5\n min-idle: 5\n maxActive: 20\n maxWait: 60000\n connectTimeout: 30000\n socketTimeout: 60000\n timeBetweenEvictionRunsMillis: 60000\n minEvictableIdleTimeMillis: 300000\n validationQuery: SELECT 1 FROM DUAL\n testWhileIdle: true\n testOnBorrow: false\n testOnReturn: false\n poolPreparedStatements: true\n maxPoolPreparedStatementPerConnectionSize: 20\n filters: stat,slf4j\n connectionProperties: druid.stat.mergeSql\\=true;druid.stat.slowSqlMillis\\=5000\n datasource:\n # 主库数据源\n master:\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: jdbc:mysql://wfc-mysql:3306/wfc_user_db?useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=GMT%2B8\n username: root\n password: 123456\n # 从库数据源\n # slave:\n # username:\n # password:\n # url:\n # driver-class-name:\n\n# mybatis配置\nmybatis:\n # 搜索指定包别名\n typeAliasesPackage: org.wfc.user\n # 配置mapper的扫描, 找到所有的mapper.xml映射文件\n mapperLocations: classpath:mapper/**/*.xml\n\n# swagger配置\nswagger:\n title: 系统模块接口文档\n license: Powered By wfc\n licenseUrl: https://wfc.vip ' , ' db8c5a7eeebb0d57d180d1a97ad6226e ' , ' 2024-12-2 8 19 :17:13 ' , ' 2024-12 -28 19:17:13 ' , NULL , ' 17 2.19.0 .1 ' , ' ' , ' wfc-prod ' , ' 用户平台模块 ' , NULL , NULL , ' yaml ' , NULL , ' ' ) ;
INSERT INTO ` config_info ` VALUES ( 55 , ' wfc-payment-prod .yml ' , ' DEFAULT_GROUP ' , ' # spring配置\nspring:\n main:\n allow-bean-definition-overriding: true\n \n redis:\n host: wfc-redis\n port: 6379\n password:\n datasource:\n druid:\n stat-view-servlet:\n enabled: true\n loginUsername: admin\n loginPassword: 123456 \n dynamic:\n druid:\n initial-size: 5\n min-idle: 5\n maxActive: 20\n maxWait: 60000\n connectTimeout: 30000\n socketTimeout: 60000\n timeBetweenEvictionRunsMillis: 60000\n minEvictableIdleTimeMillis: 300000\n validationQuery: SELECT 1 FROM DUAL\n testWhileIdle: true\n testOnBorrow: false \n testOnRet urn : false \n poolPrepa redSt atements: true\n maxPoolPreparedStatementPerConnectionSize: 20\n filters: stat,slf4j\n connectionProperties: druid.stat.mergeSql\\=true;druid.stat.slowSqlMillis\\=5000\n datasource:\n # 主库数据源\n master:\n driver-class-name: com.mysql.cj.jdbc.Driver \n url : jdbc:mysql://wfc-mysql:3306/wfc_user_db?useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=GMT%2B8\n username: root\n password: 123456\n # 从库数据源 \n # slave:\n # username: \n # password :\n # url:\n # driver-class-name:\n\n# mybatis-plus配置\nmybatis-plus:\n # 搜索指定包别名\n type-aliases-package: org.wfc.system\n # 配置mapper的扫描, 找到所有的mapper.xml映射文件\n mapper-locations: classpath:mapper/**/*.xml \n global-config:\n db-config:\n logic-delete-field: del_flag\n logic-delete-value: 1\n logic-not-delete-value: 0\n\n# swagger配置\nswagger:\n title: 系统模块接口文档\n license: Powered By wfc\n licenseUrl: https://wfc.vip\n\nlogging:\n level:\n root: debug\n org:\n springframework:\n web: debug\n mybatis:\n mapper: debug\n wfc:\n system: debug\n com:\n github:\n binarywang: debug\n file:\n name: /var/log/wfc/wfc-modules-payment. log\ n\nwxpay:\n appId: 121412414112\n mchId: 1131412414\n mchKey: 1525342aa \n subAppId: #服务商模式下的子商户公众账号ID\n subMchId: #服务商模式下的子商户号 \n keyPath: /home/wfc/config/payment/wxpay_key.pem\n useSandboxEnv: false\n ' , ' 782c7fb3b169abae667b19cd08b96df8 ' , ' 2024-12-2 8 19 :17:4 6 ' , ' 2024-12-28 19:17:46 ' , NULL , ' 172.19.0 .1 ' , ' ' , ' wfc-prod ' , ' wfc-modules-payment production yaml ' , NULL , NULL , ' yaml ' , NULL , ' ' ) ;
INSERT INTO ` config_info ` VALUES ( 56 , ' wfc-payment-dev .yml ' , ' DEFAULT_GROUP ' , ' # spring配置\nspring:\n main:\n allow-bean-definition-overriding: true\n \n redis:\n host: wfc-redis\n port: 6379\n password:\n datasource:\n druid:\n stat-view-servlet:\n enabled: true\n loginUsername: admin\n loginPassword: 123456\n dynamic:\n druid:\n initial-size: 5\n min-idle: 5\n maxActive: 20\n maxWait: 60000\n connectTimeout: 30000\n socketTimeout: 60000\n timeBetweenEvictionRunsMillis: 60000\n minEvictableIdleTimeMillis: 300000\n validationQuery: SELECT 1 FROM DUAL\n testWhileIdle: true\n testOnBorrow: false\n testOnReturn: false\n poolPreparedStatements: true\n maxPoolPreparedStatementPerConnectionSize: 20\n filters: stat,slf4j\n connectionProperties: druid.stat.mergeSql\\=true;druid.stat.slowSqlMillis\\=5000\n datasource:\n # 主库数据源\n master:\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: jdbc:mysql://wfc-mysql:3306/wfc_user_db?useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=GMT%2B8\n username: root\n password: 123456\n # 从库数据源\n # slave:\n # username:\n # password:\n # url:\n # driver-class-name:\n\n# mybatis-plus配置\nmybatis-plus:\n # 搜索指定包别名\n type-aliases-package: org.wfc.system\n # 配置mapper的扫描, 找到所有的mapper.xml映射文件\n mapper-locations: classpath:mapper/**/*.xml\n global-config:\n db-config:\n logic-delete-field: del_flag\n logic-delete-value: 1\n logic-not-delete-value: 0\n\n# swagger配置\nswagger:\n title: 系统模块接口文档\n license: Powered By wfc\n licenseUrl: https://wfc.vip\n\nlogging:\n level:\n root: debug\n org:\n springframework:\n web: debug\n mybatis:\n mapper: debug\n wfc:\n system: debug\n com:\n github:\n binarywang: debug\n file:\n name: /var/log/wfc/wfc-modules-payment.log\n\nwxpay:\n appId: 121412414112\n mchId: 1131412414\n mchKey: 1525342aa\n subAppId: #服务商模式下的子商户公众账号ID\n subMchId: #服务商模式下的子商户号 \n keyPath: /home/wfc/config/payment/wxpay_key.pem\n useSandboxEnv: false\n ' , ' 782c7fb3b169abae667b19cd08b96df8 ' , ' 2024-12-2 8 19 :18 :51 ' , ' 2024-12-28 19:18 :51 ' , NULL , ' 17 2.19.0.1 ' , ' ' , ' wfc-dev ' , ' wfc-modules-payment production yaml ' , NULL , NULL , ' yaml ' , NULL , ' ' ) ;
INSERT INTO ` config_info ` VALUES ( 57 , ' wfc-user-dev .yml ' , ' DEFAULT_GROUP ' , ' # spring配置 \nspring:\n redis:\n host: wfc-redis\n port: 6379\n password:\n datasource:\n druid:\n stat-view-servlet:\n enabled: true\n loginUsername: admin\n loginPassword: 123456\n dynamic:\n druid:\n initial-size: 5\n min-idle: 5\n maxActive: 20\n maxWait: 60000\n connectTimeout: 30000\n socketTimeout: 60000\n timeBetweenEvictionRunsMillis: 60000\n minEvictableIdleTimeMillis: 300000\n validationQuery: SELECT 1 FROM DUAL\n testWhileIdle: true\n testOnBorrow: false\n testOnReturn: false\n poolPreparedStatements: true\n maxPoolPreparedStatementPerConnectionSize: 20\n filters: stat,slf4j\n connectionProperties: druid.stat.mergeSql\\=true;druid.stat.slowSqlMillis\\=5000\n datasource:\n # 主库数据源\n master:\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: jdbc:mysql://wfc-mysql:3306/wfc_user_db?useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=GMT%2B8\n username: root\n password: 123456\n # 从库数据源\n # slave:\n # username:\n # password :\n # url:\n # driver-class-name:\n\n# mybatis配置\nmybatis:\n # 搜索指定包别名\n typeAliasesPackage: org.wfc.user\n # 配置mapper的扫描, 找到所有的mapper.xml映射文件\n mapperLocations: classpath:mapper/**/*.xml\n\n# swagger配置\nswagger:\n title: 系统模块接口文档\n license: Powered By wfc\n licenseUrl: https://wfc.vip ' , ' db8c5a7eeebb0d57d180d1a97ad6226e ' , ' 2024-12-28 19:20:25 ' , ' 2024-12-28 19:20:25 ' , NULL , ' 17 2.19.0.1 ' , ' ' , ' wfc-dev ' , ' 用户平台模块 ' , NULL , NULL , ' yaml ' , NULL , ' ' ) ;
INSERT INTO ` config_info ` VALUES ( 58 , ' wfc-user -test.yml ' , ' DEFAULT_GROUP ' , ' # spring配置\nspring:\n redis:\n host: wfc-redis\n port: 6379\n password:\n datasource:\n druid:\n stat-view-servlet:\n enabled: true\n loginUsername: admin\n loginPassword: 123456\n dynamic:\n druid:\n initial-size: 5\n min-idle: 5\n maxActive: 20\n maxWait: 60000\n connectTimeout: 30000\n socketTimeout: 60000\n timeBetweenEvictionRunsMillis: 60000\n minEvictableIdleTimeMillis: 300000\n validationQuery: SELECT 1 FROM DUAL\n testWhileIdle: true\n testOnBorrow: false\n testOnReturn: false\n poolPreparedStatements: true\n maxPoolPreparedStatementPerConnectionSize: 20\n filters: stat,slf4j\n connectionProperties: druid.stat.mergeSql\\=true;druid.stat.slowSqlMillis\\=5000\n datasource:\n # 主库数据源\n master:\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: jdbc:mysql://wfc-mysql:3306/wfc_user _db?useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=GMT%2B8\n username: root\n password: 123456\n # 从库数据源\n # slave:\n # username:\n # password:\n # url:\n # driver-class-name:\n\n# mybatis配置\nmybatis:\n # 搜索指定包别名\n typeAliasesPackage: org.wfc.user\n # 配置mapper的扫描, 找到所有的mapper.xml映射文件\n mapperLocations: classpath:mapper/**/*.xml\n\n\n # 邮箱配置\nmail:\n enabled: true\n host: smtp.qq.com\n port: 465\n # 是否需要用户名密码验证\n auth: true\n # 发送方, 遵循RFC-822标准\n from: 707821112@qq.com\n # 用户名( 注意: 如果使用foxmail邮箱, 此处user为qq号) \n user: 707821112@qq.com\n # 密码( 注意, 某些邮箱需要为SMTP服务单独设置密码, 详情查看相关帮助) \n pass: zcbontiutwvebedb\n # 使用 STARTTLS安全连接, STARTTLS是对纯文本通信协议的扩展。\n starttlsEnable: true\n # 使用SSL安全连接\n sslEnable: true\n # SMTP超时时长, 单位毫秒, 缺省值不超时\n timeout: 0\n # Socket连接超时值, 单位毫秒, 缺省值不超时\n connectionTimeout: 0\n\n# springdoc配置\nspringdoc:\n gatewayUrl: http://wfc-gateway:8080/${spring.application.name}\n api-docs:\n # 是否开启接口文档\n enabled: true\n info:\n # 标题\n title: \ ' 用 户 模 块 接 口 文 档 \ ' \n # 描述\n description: \ ' 用 户 模 块 接 口 描 述 \ ' \n # 作者信息\n contact:\n name: wfc\n url: https://wfc.vip ' , ' 9d81d4aa99fd5f28bea4860a1ad03d07 ' , ' 2024-12-28 19:22:29 ' , ' 2024-12-28 19:22:2 9 ' , NULL , ' 17 2.19.0.1 ' , ' ' , ' wfc-test ' , ' 用户平台 模块' , NULL , NULL , ' yaml ' , NULL , ' ' ) ;
INSERT INTO ` config_info ` VALUES ( 59 , ' wfc-paym ent -test.yml ' , ' DEFAULT_GROUP ' , ' # spring配置\nspring:\n main:\n allow-bean-definition-overriding: true\n \n redis:\n host: wfc-redis\n port: 6379\n password:\n datasource:\n druid:\n stat-view-servlet:\n enabled: true\n loginUsername: admin\n loginPassword: 123456\n dynamic:\n druid:\n initial-size: 5\n min-idle: 5\n maxActive: 20\n maxWait: 60000\n connectTimeout: 30000\n socketTimeout: 60000\n timeBetweenEvictionRunsMillis: 60000\n minEvictableIdleTimeMillis: 300000\n validationQuery: SELECT 1 FROM DUAL\n testWhileIdle: true\n testOnBorrow: false\n testOnReturn: false\n poolPreparedStatements: true\n maxPoolPreparedStatementPerConnectionSize: 20\n filters: stat,slf4j\n connectionProperties: druid.stat.mergeSql\\=true;druid.stat.slowSqlMillis\\=5000\n datasource:\n # 主库数据源\n master:\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: jdbc:mysql://wfc-mysql:3306/wfc_user _db?useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=GMT%2B8\n username: root\n password: 123456\n # 从库数据源\n # slave:\n # username:\n # password:\n # url:\n # driver-class-name:\n \n# mybatis-plus 配置\nmybatis-plus :\n # 搜索指定包别名\n type-a liases-p ackage: org.wfc.system\n # 配置mapper的扫描, 找到所有的mapper.xml映射文件\n mapper-l ocations: classpath:mapper/**/*.xml\n global-config:\n db-config:\n logic-delete-field: del_flag\n logic-delete-value: 1\n logic-not-delete-value: 0\n \n# swagger配置\nswagger:\n title: 系统模块 接口文档\n license: Powered By wfc\n licenseUrl: https://wfc.vip\n\nlogging:\n level:\n root: debug\n org:\n springframework:\n web: debug\n mybatis:\n mapper: debug\n wfc: \n system: debug\n com:\n github:\n binarywang: debug\n file:\n name: /var/log/wfc/wfc-modules-payment.log\n\nwxpay:\n appId: 121412414112\n mchId: 1131412414\n mchKey: 1525342aa\n subAppId: #服务商模式下的子商户公众账号ID\n subMchId: #服务商模式下的子商户号 \n keyPath: /home/wfc/config/payment/wxpay_key.pem\n useSandboxEnv: false\n ' , ' 782c7fb3b169abae667b19cd08b96df8 ' , ' 2024-12-28 19:22 :50 ' , ' 2024-12-28 19:22 :50 ' , NULL , ' 17 2.19.0.1 ' , ' ' , ' wfc-test ' , ' wfc-modules-payment production yaml ' , NULL , NULL , ' yaml ' , NULL , ' ' ) ;
INSERT INTO ` config_info ` VALUES ( 60 , ' application .yml' , ' DEFAULT_GROUP ' , ' spring:\n autoconfigure:\n exclude: com.alibaba.druid.spring.boot.autoconfigure.DruidDataSourceAutoConfigure\n mvc:\n pathmatch:\n matching-strategy: ant_path_matcher\n # 资源信息\n messages:\n # 国际化资源文件路径\n basename: i18n/messages\n \n# feign 配置\nfeign:\n sentinel:\n enabled: true\n okhttp:\n enabled: false\n httpclient:\n enabled: true\n disable-ssl-validation: true\n client:\n config:\n default:\n connectTimeout: 60000\n readTimeout: 60000\n compression:\n request:\n enabled: true\n min-request-size: 8192\n response:\n enabled: true\n\n# 暴露监控端点\nmanagement:\n endpoints:\n web:\n exposure:\n include: \ ' * \ ' \n ' , ' 3da71d069327a6468c46292591fe5142 ' , ' 2024-12-28 19:25:30 ' , ' 2024-12-28 19:25:30 ' , NULL , ' 17 2.19.0.1 ' , ' ' , ' ' , ' 通用配置 ' , NULL , NULL , ' yaml ' , NULL , ' ' ) ;
INSERT INTO ` config_info ` VALUES ( 61 , ' wfc-gateway .yml ' , ' DEFAULT_GROUP ' , ' spring:\n redis:\n host: wfc-redis\n port: 6379\n password:\n cloud:\n gateway:\n discovery:\n locator:\n lowerCaseServiceId: true\n enabled: true\n routes:\n # 认证中心\n - id: wfc-auth\n uri: lb://wfc-auth\n predicates:\n - Path=/auth/**\n filters:\n # 验证码处理\n - CacheRequestFilter\n - ValidateCodeFilter\n - StripPrefix=1\n # 代码生成\n - id: wfc-gen\n uri: lb://wfc-gen\n predicates:\n - Path=/code/**\n filters:\n - StripPrefix=1\n # 定时任务\n - id: wfc-job\n uri: lb://wfc-job\n predicates:\n - Path=/schedule/**\n filters: \n - StripPrefix=1\n # 系统模块\n - id: wfc-system\n uri: lb://wfc-system\n predicates:\n - Path=/system/**\n filters:\n - StripPrefix=1\n # 用户模块\n - id: wfc-user\n uri: lb://wfc-user\n predicates:\n - Path=/u/**\n filters:\n - StripPrefix=1 \n # 文件服务\n - id: wfc-file\n uri: lb://wfc-file\n predicates:\n - Path=/file/**\n filters:\n - StripPrefix=1\n # payment\n - id: wfc-payment\n uri: lb://wfc-payment \n predicates:\n - Path=/payment/**\n filters:\n - StripPrefix=1 \n\n# 安全配置\nsecurity:\n # 验证码\n captcha:\n enabled: true\n type: math\n # 防止XSS攻击\n xss:\n enabled: true\n excludeUrls:\n - /system/notice\n # 不校验白名单\n ignore:\n whites:\n - /auth/logout\n - /auth/login\n - /auth/register\n - /*/v2/api-docs\n - /csrf\n ' , ' 50c8bf5bbc07402c51b4d696ddb64a89 ' , ' 2024-12-28 19:25:30 ' , ' 2024-12-28 19:25:30 ' , NULL , ' 17 2.19.0.1 ' , ' ' , ' ' , ' wfc-gateway production ' , NULL , NULL , ' yaml ' , NULL , ' ' ) ;
INSERT INTO ` config_info ` VALUES ( 62 , ' wfc-auth .yml ' , ' DEFAULT_GROUP ' , ' spring:\n redis:\n host: wfc-redis\n port: 6379\n password:\n' , ' c3f5481240e7581cc397f5c7918fd785 ' , ' 2024-12-28 19:25:30 ' , ' 2024-12-28 19:25:30 ' , NULL , ' 172.19.0.1 ' , ' ' , ' ' , ' 认证中心 ' , NULL , NULL , ' yaml ' , NULL , ' ' ) ;
INSERT INTO ` config_info ` VALUES ( 63 , ' wfc-monitor .yml ' , ' DEFAULT_GROUP ' , ' # spring\nspring:\n security:\n user:\n name: wfc\n password: 123456\n boot:\n admin:\n ui:\n title: visual monitor\n ' , ' c8f896d284d5328aa b16baeb81a3685c ' , ' 2024-12-28 19:25:3 0 ' , ' 2024-12-28 19:25:3 0 ' , NULL , ' 172.19.0.1 ' , ' ' , ' ' , ' 监控中心 ' , NULL , NULL , ' yaml ' , NULL , ' ' ) ;
INSERT INTO ` config_info ` VALUES ( 64 , ' wfc-system.yml ' , ' DEFAULT_GROUP ' , ' # spring配置\nspring:\n redis:\n host: wfc-redis\n port: 6379\n password:\n datasource:\n druid:\n stat-view-servlet:\n enabled: true\n loginUsername: admin\n loginPassword: 123456\n dynamic:\n druid:\n initial-size: 5\n min-idle: 5\n maxActive: 20\n maxWait: 60000\n connectTimeout: 30000\n socketTimeout: 60000\n timeBetweenEvictionRunsMillis : 6 0000 \n minEvictableIdleTimeMillis: 300000\n validationQuery: SELECT 1 FROM DUAL\n testWhileIdle: true\n testOnBorrow: false\n testOnReturn: false\n poolPreparedStatements: true\n maxPoolPreparedStatementPerConnectionSize: 20\n filters: stat,slf4j\n connectionProperties: druid.stat.mergeSql\\=true;druid.stat.slowSqlMillis\\=5000\n datasource:\n # 主库数据源\n master:\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: jdbc:mysql://wfc-mysql:3306/wfc_system_db?useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=GMT%2B8\n username: root\n password: 123456\n # 从库数据源\n # slave:\n # username: \n # password: \n # url: \n # driver-class-name: \n\n# mybatis配置\nmybatis:\n # 搜索指定包别名\n typeAliasesPackage: org.wfc.system\n # 配置mapper的扫描, 找到所有的mapper.xml映射文件\n mapperLocations: classpath:mapper/**/*.xml\n\n# swagger配置\nswagger:\n title: 系统模块接口文档\n license: Powered By wfc\n licenseUrl: https://wfc.vip ' , ' a355587121f711511c9010a4a8c0d797 ' , ' 2024-12-28 19:25:30 ' , ' 2024-12-28 19:25:30 ' , NULL , ' 172.19.0.1 ' , ' ' , ' ' , ' 系统模块 ' , NULL , NULL , ' yaml ' , NULL , ' ' ) ;
INSERT INTO ` config_info ` VALUES ( 65 , ' wfc-gen.yml ' , ' DEFAULT_GROUP ' , ' # spring配置\nspring:\n redis:\n host: wfc-redis\n port: 6379\n password:\n datasource:\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: jdbc:mysql://wfc-mysql:3306/wfc_system_db?useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=GMT%2B8\n username: root\n password: 123456\n\n# mybatis配置\nmybatis:\n # 搜索指定包别名\n typeAliasesPackage: org.wfc.gen.domain\n # 配置mapper的扫描, 找到所有的mapper.xml映射文件\n mapperLocations: classpath:mapper/**/*.xml\n\n# swagger配置\nswagger:\n title: 代码生成接口文档\n license: Powered By wfc\n licenseUrl: https://wfc.vip\n\n# 代码生成\ngen:\n # 作者\n author: wfc\n # 默认生成包路径 system 需改成自己的模块名称 如 system monitor tool\n packageName: org.wfc.system\n # 自动去除表前缀, 默认是false\n autoRemovePre: false\n # 表前缀(生成类名不会包含表前缀,多个用逗号分隔)\n tablePrefix: sys_\n ' , ' 5ec7d9b8eb46eca656316e5f817aadb2 ' , ' 2024-12-28 19:25:30 ' , ' 2024-12-28 19:25:30 ' , NULL , ' 172.19.0.1 ' , ' ' , ' ' , ' 代码生成 ' , NULL , NULL , ' yaml ' , NULL , ' ' ) ;
INSERT INTO ` config_info ` VALUES ( 66 , ' wfc-job .yml' , ' DEFAULT_GROUP ' , ' # spring配置\nspring:\n redis:\n host: wfc-redis\n port: 6379\n password: \n datasource:\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: jdbc:mysql://wfc-mysql:3306/wfc_system_db?useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=GMT%2B8\n username: root\n password: 123456\n\n# mybatis配置\nmybatis:\n # 搜索指定包别名\n typeAliasesPackage: org.wfc.job.domain\n # 配置mapper的扫描, 找到所有的mapper.xml映射文件\n mapperLocations: classpath:mapper/**/*.xml\n\n# swagger配置\nswagger:\n title: 定时任务接口文档\n license: Powered By wfc\n licenseUrl: https://wfc.vip\n ' , ' 1376deec876c0878df743b4d96c7f125 ' , ' 2024-12-28 19:25 :30 ' , ' 2024-12-28 19:25:30 ' , NULL , ' 172.19.0 .1 ' , ' ' , ' ' , ' 定时任务 ' , NULL , NULL , ' yaml ' , NULL , ' ' ) ;
INSERT INTO ` config_info ` VALUES ( 67 , ' wfc-file .yml ' , ' DEFAULT_GROUP ' , ' # 本地文件上传 \nfile: \n domain: http://127.0.0.1:9300\n path: /home/wfc/upload\n prefix: /statics\n\n# FastDFS配置\nfdfs:\n domain: http://8.129.231.12\n soTimeout: 3000\n connectTimeout: 2000\n trackerList: 8.129.231.12:22122\n\n# Minio配置\nminio:\n url: http://8.129.231.12:9000\n accessKey: minioadmin\n secretKey: minioadmin\n bucketName: test ' , ' 580197933f0f0b2ba468a0916b911d4 b' , ' 2024-12-28 19:25 :30 ' , ' 2024-12-28 19:25:3 0 ' , NULL , ' 172.19 .0.1 ' , ' ' , ' ' , ' 文件服务 ' , NULL , NULL , ' yaml ' , NULL , ' ' ) ;
INSERT INTO ` config_info ` VALUES ( 69 , ' wfc-user .yml ' , ' DEFAULT_GROUP ' , ' # spring配置\n spring:\n redis:\n host: wfc-redis\n port: 6379\n password:\n datasource:\n druid:\n stat-view-servlet:\n enabled: true\n loginUsername: admin\n loginPassword: 123456\n dynamic:\n druid:\n initial-size: 5\n min-idle: 5\n maxActive: 20\n maxWait: 60000\n connectTimeout: 30000\n socketTimeout: 60000\n timeBetweenEvictionRunsMillis: 60000\n minEvictableIdleTimeMillis: 300000\n validationQuery: SELECT 1 FROM DUAL\n testWhileIdle: true\n testOnBorrow: false\n testOnReturn: false\n poolPreparedStatements: true\n maxPoolPreparedStatementPerConnectionSize: 20\n filters: stat,slf4j\n connectionProperties: druid.stat.mergeSql\\=true;druid.stat.slowSqlMillis\\=5000\n datasource:\n # 主库数据源\n master:\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: jdbc:mysql://wfc-mysql:3306/wfc_user_db?useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=GMT%2B8\n username: root\n password: 123456\n # 从库数据源\n # slave:\n # username:\n # password:\n # url:\n # driver-class-name:\n\n# mybatis配置\nmybatis:\n # 搜索指定包别名\n typeAliasesPackage: org.wfc.user\n # 配置mapper的扫描, 找到所有的mapper.xml映射文件\n mapperLocations: classpath:mapper/**/*.xml\n\n# swagger配置\nswagger:\n title: 系统模块接口文档\n license: Powered By wfc\n licenseUrl: https://wfc.vip ' , ' db8c5a7eeebb0d57d180d1a97ad6226e ' , ' 2024-12-28 19:27:21 ' , ' 2024-12-28 19:27:21 ' , NULL , ' 17 2.19.0.1 ' , ' ' , ' ' , ' 用户平台模块 ' , NULL , NULL , ' yaml ' , NULL , ' ' ) ;
INSERT INTO ` config_info ` VALUES ( 70 , ' wfc-payment .yml ' , ' DEFAULT_GROUP ' , ' # spring配置 \nspring:\n main:\n allow-bean-definition-overriding: true\n \n redis:\n host: wfc-redis\n port: 6379\n password:\n datasource:\n druid:\n stat-view-servlet:\n enabled: true\n loginUsername: admin\n loginPassword: 123456\n dynamic:\n druid:\n initial-size: 5\n min-idle: 5\n maxActive: 20\n maxWait: 60000\n connectTimeout: 30000\n socketTimeout: 60000\n timeBetweenEvictionRunsMillis: 60000\n minEvictableIdleTimeMillis: 300000\n validationQuery: SELECT 1 FROM DUAL\n testWhileIdle: true\n testOnBorrow: false\n testOnReturn: false\n poolPreparedStatements: true\n maxPoolPreparedStatementPerConnectionSize: 20\n filters: stat,slf4j\n connectionProperties: druid.stat.mergeSql\\=true;druid.stat.slowSqlMillis\\=5000\n datasource:\n # 主库数据源\n master:\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: jdbc:mysql://wfc-mysql:3306/wfc_user_db?useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=GMT%2B8\n username: root\n password: 123456\n # 从库数据源\n # slave:\n # username:\n # password:\n # url:\n # driver-class-name:\n\n# mybatis-plus配置\nmybatis-plus:\n # 搜索指定包别名\n type-aliases-package: org.wfc.system\n # 配置mapper的扫描, 找到所有的mapper.xml映射文件\n mapper-locations: classpath:mapper/**/*.xml\n global-config:\n db-config:\n logic-delete-field: del_flag\n logic-delete-value: 1\n logic-not-delete-value: 0\n\n# swagger配置\nswagger:\n title: 系统模块接口文档\n license: Powered By wfc\n licenseUrl: https://wfc.vip\n\nlogging:\n level:\n root: debug\n org:\n springframework:\n web: debug\n mybatis:\n mapper: debug\n wfc:\n system: debug\n com:\n github:\n binarywang: debug\n file:\n name: /var/log/wfc/wfc-modules-payment.log\n\nwxpay:\n appId: 121412414112\n mchId: 1131412414\n mchKey: 1525342aa\n subAppId: #服务商模式下的子商户公众账号ID\n subMchId: #服务商模式下的子商户号 \n keyPath: /home/wfc/config/payment/wxpay_key.pem\n useSandboxEnv: false\n ' , ' 782c7fb3 b169a bae667b19cd08b96df8 ' , ' 2024-12-28 19:27:21 ' , ' 2024-12-28 19:27:21 ' , NULL , ' 17 2.19.0.1 ' , ' ' , ' ' , ' wfc-modules-payment production yaml ' , NULL , NULL , ' yaml ' , NULL , ' ' ) ;
INSERT INTO ` config_info ` VALUES ( 1 , ' application-pub .yml ' , ' DEFAULT_GROUP ' , ' spring:\n autoconfigure:\n exclude: com.alibaba.druid.spring.boot.autoconfigure.DruidDataSourceAutoConfigure\n mvc:\n pathmatch:\n matching-strategy: ant_path_matcher\n # 资源信息\n messages:\n # 国际化资源文件路径\n basename: i18n/messages\n \n# feign 配置\nfeign:\n sentinel:\n enabled: tru e\n okhttp:\n enabled: fals e\n httpclient:\n enabled: true\n disable-ssl-validation: true\n client:\n config:\n default:\n connectTimeout: 6 0000\n readTimeout: 6 0000\n compression:\n request:\n enabled: true\n min-request-size: 8192\n response:\n enabled: true\n\n# 暴露监控端点\nmanagement:\n endpoints:\n web:\n exposure:\n include: \ ' * \ ' \n ' , ' 0e6382041af033b46a7a78463ab519d5 ' , ' 2024-12-31 10:56:52 ' , ' 2024-12-31 10:56:52 ' , NULL , ' 17 2.20.0 .1 ' , ' ' , ' ' , ' 通用配置 ' , NULL , NULL , ' yaml ' , NULL , ' ' ) ;
INSERT INTO ` config_info ` VALUES ( 2 , ' wfc-gateway-pub .yml ' , ' DEFAULT_GROUP ' , ' spring:\n redis:\n host: wfc-redis\n port: 6379\n password:\n cloud:\n gateway:\n discovery:\n locator:\n lowerCaseServiceId: true\n enabled: true\n routes:\n # 认证中心\n - id: wfc-auth\n uri: lb://wfc-auth\n predicates:\n - Path=/auth/**\n filters:\n # 验证码处理\n - CacheRequestFilter\n - ValidateCodeFilter\n - StripPrefix=1\n # 代码生成\n - id: wfc-gen\n uri: lb://wfc-gen\n predicates:\n - Path=/code/**\n filters:\n - StripPrefix=1\n # 定时任务\n - id: wfc-job\n uri: lb://wfc-job\n predicates:\n - Path=/schedule/**\n filters:\n - StripPrefix=1\n # 系统模块\n - id: wfc-system\n uri: lb://wfc-system\n predicates:\n - Path=/system/**\n filters:\n - StripPrefix=1\n # 用户模块\n - id: wfc-user\n uri: lb://wfc-user\n predicates:\n - Path=/u/**\n filters:\n - StripPrefix=1 \n # 文件服务\n - id: wfc-file\n uri: lb://wfc-file\n predicates:\n - Path=/file/**\n filters:\n - StripPrefix=1\n # payment\n - id: wfc-payment\n uri: lb://wfc-payment\n predicates:\n - Path=/payment/**\n filters:\n - StripPrefix=1 \n\n# 安全配置\nsecurity:\n # 验证码\n captcha:\n enabled: true\n type: math\n # 防止XSS攻击\n xss:\n enabled: true\n excludeUrls:\n - /system/notice\n # 不校验白名单\n ignore:\n whites:\n - /auth/logout\n - /auth/login\n - /auth/register\n - /*/v2/api-docs\n - /csrf\n ' , ' 50c8bf5bbc07402c51b4d696ddb64a89 ' , ' 2024-12-31 10:56:52 ' , ' 2024-12-31 10:56:52 ' , NULL , ' 172.20.0 .1 ' , ' ' , ' ' , ' wfc-gateway production ' , NULL , NULL , ' yaml ' , NULL , ' ' ) ;
INSERT INTO ` config_info ` VALUES ( 3 , ' wfc-auth-pub .yml ' , ' DEFAULT_GROUP ' , ' spring:\n redis:\n host: wfc-redis\n port: 6379\n password:\n ' , ' c3f5481240e7581cc397f5c7918fd785 ' , ' 2024-12-31 10:56:52 ' , ' 2024-12-31 10:56:52 ' , NULL , ' 17 2.20.0.1 ' , ' ' , ' ' , ' 认证中心 ' , NULL , NULL , ' yaml ' , NULL , ' ' ) ;
INSERT INTO ` config_info ` VALUES ( 4 , ' wfc-monitor-pub .yml ' , ' DEFAULT_GROUP ' , ' # spring\nspring:\n security:\n user:\n name: wfc\n password: 123456\n boot:\n admin:\n ui:\n title: visual monitor \n ' , ' c8f896d284d5328aab16baeb81a3685c ' , ' 2024-12-31 10:56:52 ' , ' 2024-12-31 10:56:52 ' , NULL , ' 17 2.20.0.1 ' , ' ' , ' ' , ' 监控中心 ' , NULL , NULL , ' yaml ' , NULL , ' ' ) ;
INSERT INTO ` config_info ` VALUES ( 5 , ' wfc-system-pub .yml ' , ' DEFAULT_GROUP ' , ' # spring配置\nspring:\n redis:\n host: wfc-redis\n port: 6379\n password:\n datasource:\n druid:\n stat-view-servlet:\n enabled: true\n loginUsername: admin\n loginPassword: 123456\n dynamic:\n druid:\n initial-size: 5\n min-idle: 5\n maxActive: 20\n maxWait: 60000\n connectTimeout: 30000\n socketTimeout: 60000\n timeBetweenEvictionRunsMillis: 60000\n minEvictableIdleTimeMillis: 300000\n validationQuery: SELECT 1 FROM DUAL\n testWhileIdle: true\n testOnBorrow: false\n testOnReturn: false\n poolPreparedStatements: true\n maxPoolPreparedStatementPerConnectionSize: 20\n filters: stat,slf4j\n connectionProperties: druid.stat.mergeSql\\=true;druid.stat.slowSqlMillis\\=5000\n datasource:\n # 主库数据源\n master:\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: jdbc:mysql://wfc-mysql:3306/wfc_system_db?useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=GMT%2B8\n username: root\n password: 123456\n # 从库数据源\n # slave:\n # username: \n # password: \n # url: \n # driver-class-name: \n\n# mybatis配置\nmybatis:\n # 搜索指定包别名\n typeAliasesPackage: org.wfc.system\n # 配置mapper的扫描, 找到所有的mapper.xml映射文件\n mapperLocations: classpath:mapper/**/*.xml\n\n# swagger配置\nswagger:\n title: 系统模块接口文档\n license: Powered By wfc\n licenseUrl: https://wfc.vip ' , ' a355587121f711511c9010a4a8c0d797 ' , ' 2024-12-31 10:56:52 ' , ' 2024-12-31 10:56:52 ' , NULL , ' 172.20.0.1 ' , ' ' , ' ' , ' 系统模块 ' , NULL , NULL , ' yaml ' , NULL , ' ' ) ;
INSERT INTO ` config_info ` VALUES ( 6 , ' wfc-gen-pub .yml ' , ' DEFAULT_GROUP ' , ' # spring配置\nspring:\n redis:\n host: wfc-redis\n port: 6379\n password:\n datasource:\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: jdbc:mysql://wfc-mysql:3306/wfc_system_db?useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=GMT%2B8\n username: root\n password: 123456\n\n# mybatis配置\nmybatis:\n # 搜索指定包别名\n typeAliasesPackage: org.wfc.gen.domain\n # 配置mapper的扫描, 找到所有的mapper.xml映射文件\n mapperLocations: classpath:mapper/**/*.xml\n\n# swagger配置\nswagger:\n title: 代码生成接口文档\n license: Powered By wfc\n licenseUrl: https://wfc.vip\n\n# 代码生成\ngen:\n # 作者\n author: wfc\n # 默认生成包路径 system 需改成自己的模块名称 如 system monitor tool\n packageName: org.wfc.system\n # 自动去除表前缀, 默认是false\n autoRemovePre: false\n # 表前缀(生成类名不会包含表前缀,多个用逗号分隔)\n tablePrefix: sys_\n ' , ' 5ec7d9b8eb46eca656316e5f817aadb2 ' , ' 2024-12-31 10:56:52 ' , ' 2024-12-31 10:56:52 ' , NULL , ' 172.20.0.1 ' , ' ' , ' ' , ' 代码生成 ' , NULL , NULL , ' yaml ' , NULL , ' ' ) ;
INSERT INTO ` config_info ` VALUES ( 7 , ' wfc-job-pub .yml ' , ' DEFAULT_GROUP ' , ' # spring配置\nspring:\n redis:\n host: wfc-redis\n port: 6379\n password: \n datasource:\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: jdbc:mysql://wfc-mysql:3306/wfc_system_db?useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=GMT%2B8\n username: root\n password: 123456\n\n# mybatis配置\nmybatis:\n # 搜索指定包别名\n typeAliasesPackage: org.wfc.job.domain\n # 配置mapper的扫描, 找到所有的mapper.xml映射文件\n mapperLocations: classpath:mapper/**/*.xml\n\n# swagger配置\nswagger:\n title: 定时任务接口文档\n license: Powered By wfc\n licenseUrl: https://wfc.vip\n ' , ' 1376deec876c0878df743b4d96c7f125 ' , ' 2024-12-31 10:56:52 ' , ' 2024-12-31 10:56:52 ' , NULL , ' 172.20.0.1 ' , ' ' , ' ' , ' 定时任务 ' , NULL , NULL , ' yaml ' , NULL , ' ' ) ;
INSERT INTO ` config_info ` VALUES ( 8 , ' wfc-file-pub .yml ' , ' DEFAULT_GROUP ' , ' # 本地文件上传 \nfile:\n domain: http://127.0.0.1:9300\n path: /home/wfc/upload\n prefix: /statics\n\n# FastDFS配置\nfdfs:\n domain: http://8.129.231.12\n soTimeout: 3000\n connectTimeout: 2000\n trackerList: 8.129.231.12:22122\n\n# Minio配置\nminio:\n url: http://8.129.231.12:9000\n accessKey: minioadmin\n secretKey: minioadmin\n bucketName: test ' , ' 580197933f0f0b2ba468a0916b911d4b ' , ' 2024-12-31 10:56:52 ' , ' 2024-12-31 10:56 :52 ' , NULL , ' 17 2.20.0.1 ' , ' ' , ' ' , ' 文件服务 ' , NULL , NULL , ' yaml ' , NULL , ' ' ) ;
INSERT INTO ` config_info ` VALUES ( 9 , ' wfc-user-pub .yml' , ' DEFAULT_GROUP ' , ' # spring配置\nspring:\n redis:\n host: wfc-redis\n port: 6379\n password:\n d atas ource:\n druid:\n stat-view-servlet:\n enabled: true\n loginUsername: admin\n loginPassword: 123456\n dynamic:\n druid:\n initial-size: 5\n min-idle: 5\n maxActive: 20\n maxWait: 60000\n connectTimeout: 30000\n socketTimeout: 60000\n timeBetweenEvictionRunsMillis: 60000\n minEvictableIdleTimeMillis: 300000\n validationQuery: SELECT 1 FROM DUAL \n testWhileIdle: true\n testOnBorrow: false\n testOnReturn: false\n poolPreparedStatements: true\n maxPoolPreparedStatementPerConnectionSize: 20\n filters: stat,slf4j\n connectionProperties: druid.stat.mergeSql\\=true;druid.stat.slowSqlMillis\\=5000\n datasource:\n # 主库数据源\n master:\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: jdbc:mysql://wfc-mysql:3306/wfc_user_db?useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=GMT%2B8\n username: root\n password: 123456\n # 从库数据源\n # slav e:\n # username:\n # password:\n # url:\n # driver-class-name:\n\n# mybatis配置\nmybatis:\n # 搜索指定包别名\n typeAliasesPackage: org.wfc.user\n # 配置mapper的扫描, 找到所有的mapper.xml映射文件\n mapperLocations: classpath:mapper/**/*.xml\n\n# swagger配置\nswagger:\n title: 系统模块接口文档\n license: Powered By wfc\n licenseUrl: https://wfc.vip ' , ' db8c5a7eeebb0d57d180d1a97ad6226e ' , ' 2024-12-31 10:56:52 ' , ' 2024-12-31 10:56:52 ' , NULL , ' 17 2.20.0 .1 ' , ' ' , ' ' , ' 用户平台模块 ' , NULL , NULL , ' yaml ' , NULL , ' ' ) ;
INSERT INTO ` config_info ` VALUES ( 1 0, ' wfc-payment-pub .yml ' , ' DEFAULT_GROUP ' , ' # spring配置\nspring:\n main:\n allow-bean-definition-overriding: true\n \n redis:\n host: wfc-redis\n port: 6379\n password:\n datasource:\n druid:\n stat-view-servlet:\n enabled: true \n loginUsername: admin\n loginPassword: 123456\n dynamic :\n druid: \n initial-size: 5\n min-idle: 5\n maxActive: 20\n maxWait: 60000 \n connectTimeout: 30000\n socketTimeout: 60000\n timeBetweenEvictionRunsMillis: 60000\n minEvictableIdleTimeMillis: 300000\n validationQuery: SELECT 1 FROM DUAL\n testWhileIdle: true\n testOnBorrow: false \n testOnRet urn : false \n poolPrepa redSt atements: true\n maxPoolPreparedStatementPerConnectionSize: 20\n filters: stat,slf4j\n connectionProperties: druid.stat.mergeSql\\=true;druid.stat.slowSqlMillis\\=5000\n datasource:\n # 主库数据源 \n mas ter:\n driver-class-name: com.mysql.cj.jdbc.Driver \n url : jdbc:mysq l://wfc-m ysql:3306/wfc_user_db?useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=GMT%2B8\n username: root\n password: 123456\n # 从库数据源 \n # slave:\n # username: \n # password :\n # url:\n # driver-class-name:\n\n# mybatis-plus配置\nmybatis-plus:\n # 搜索指定包别名\n type-aliases-package: org.wfc.system\n # 配置mapper的扫描, 找到所有的mapper.xml映射文件\n mapper-locations: classpath:mapper/**/*.xml\n global-config:\n db-config:\n logic-delete-field: del_flag\n logic-delete-value: 1\n logic-not-delete-value: 0\n\n# swagger配置\nswagger:\n title: 系统模块接口文档\n license: Powered By wfc\n licenseUrl: https://wfc.vip\n\nlogging:\n level:\n root: debug\n org:\n springframework:\n web: debug\n mybatis:\n mapper: debug\n wfc:\n system: debug\n com:\n github:\n binarywang: debug\n file:\n name: /var/log/wfc/wfc-modules-payment. log\ n\nwxpay:\n appId: 121412414112\n mchId: 1131412414\n mchKey: 1525342aa\n subAppId: #服务商模式下的子商户公众账号ID\n subMchId: #服务商模式下的子商户号 \n keyPath: /home/wfc/config/payment/wxpay_key.pem\n useSandboxEnv: false\n ' , ' 782c7fb3b169abae667b19cd08b96df8 ' , ' 2024-12-31 10:56:52 ' , ' 2024-12-31 10:56:52 ' , NULL , ' 172.20.0 .1 ' , ' ' , ' ' , ' wfc-modules-payment production yaml ' , NULL , NULL , ' yaml ' , NULL , ' ' ) ;
INSERT INTO ` config_info ` VALUES ( 1 1, ' sentinel-wfc-gateway-pub ' , ' DEFAULT_GROUP ' , ' [\r \n {\r\n \"resource\": \"wfc-auth\",\r\n \"count\": 500,\r\n \"grade\": 1,\r\n \"limitApp\": \"default\",\r\n \"strategy\": 0,\r\n \"controlBehavior\": 0\r\n },\r\n {\r\n \"resource\": \"wfc-system\",\r\n \"count\": 1000,\r\n \"grade\": 1,\r\n \"limitApp\": \"default\",\r\n \"strategy\": 0,\r\n \"controlBehavior\": 0\r\n },\r\n {\r\n \"resource\": \"wfc-gen\",\r\n \"count\": 200,\r\n \"grade\": 1,\r\n \"limitApp\": \"default\",\r\n \"strategy\": 0,\r\n \"controlBehavior\": 0\r\n },\r\n {\r\n \"resource\": \"wfc-job\",\r\n \" cou nt\": 300,\r\n \"grade\": 1,\r\n \"limitApp\": \"default\",\r\n \"strategy\": 0,\r\n \"controlBehavior\": 0\r\n }\r\n] ' , ' a8b3ec396dd09d5f2ba494cc80a7afa0 ' , ' 2024-12-31 10:57:17 ' , ' 2024-12-31 10:57:17 ' , NULL , ' 17 2.20.0.1 ' , ' ' , ' ' , ' 限流策略 ' , NULL , NULL , ' json ' , NULL , ' ' ) ;
INSERT INTO ` config_info ` VALUES ( 21 , ' application-dev .yml' , ' DEFAULT_GROUP ' , ' spring:\n autoconfigure:\n exclude: com.alibaba.druid.spring.boot.autoconfigure.DruidDataSourceAutoConfigure\n mvc:\n pathmatch:\n matching-strategy: ant_path_matcher\n\n# feign 配置\nfeign: \n sentinel:\n enabled: false\n okhttp:\n enabled: true\n httpclient:\n enabled: true\n disable-ssl-validation: true\n client:\n config:\n default:\n connectTimeout: 10000\n readTimeout: 10000\n compression:\n request:\n enabled: true\n min-request-size: 8192\n response:\n e nabled : true\n\n# 暴露监控端点\nmanagement:\n endpoints:\n web:\n exposure:\n include: \ ' * \ ' \n ' , ' 58dde4e3760499d3bac2d77a3a1e9018 ' , ' 2024-11-18 18:11:28 ' , ' 2024-11 -18 18:11:28 ' , ' ' , ' 192.168.88.14 ' , ' ' , ' wfc-dev ' , ' 通用配置 ' , NULL , NULL , ' yaml ' , NULL , ' ' ) ;
INSERT INTO ` config_info ` VALUES ( 22 , ' wfc-gateway-dev .yml ' , ' DEFAULT_GROUP ' , ' spring:\n redis:\n host: wfc-redis\n port: 6379\n password:\n cloud:\n gateway:\n discovery:\n locator:\n lowerCaseServiceId: true \n enabled: true\n routes:\n # 认证中心\n - id: wfc-auth\n uri: lb://wfc-auth\n predicates:\n - Path=/auth/**\n filters:\n # 验证码处理\n - CacheRequestFilter\n - ValidateCodeFilter\n - StripPrefix=1\n # 代码生成\n - id: wfc-gen\n uri: lb://wfc-gen\n predicates:\n - Path=/code/**\n filters:\n - StripPrefix=1\n # 定时任务\n - id: wfc-job\n uri: lb://wfc-job\n predicates:\n - Path=/schedule/**\n filters:\n - StripPrefix=1\n # 系统模块\n - id: wfc-system\n uri: lb://wfc-system\n predicates:\n - Path=/system/**\n filters:\n - StripPrefix=1\n # 文件服务\n - id: wfc-file\n uri: lb://wfc-file\n predicates:\n - Path=/file/**\n filters:\n - StripPrefix=1\n # payment\n - id: wfc-payment\n uri: lb://wfc-payment\n predicates:\n - Path=/payment/**\n filters:\n - StripPrefix=1 \n\n# 安全配置\nsecurity :\n # 验证码 \n captcha:\n enabled: true\n type: math\n # 防止XSS攻击\n xss:\n enabled: true\n excludeUrls:\n - /system/notice\n # 不校验白名单\n ignore:\n whites:\n - /auth/logout\n - /auth/login\n - /auth/register\n - /*/v2/api-docs\n - /csrf\n ' , ' 7b1fad1543297684976990ac9f3baca 2 ' , ' 2024-11-18 18:11:28 ' , ' 2024-12-26 09:45:29 ' , NULL , ' 17 2.100.88.1 ' , ' ' , ' wfc-dev ' , ' 网关模块 ' , ' ' , ' ' , ' yaml ' , ' ' , ' ' ) ;
INSERT INTO ` config_info ` VALUES ( 23 , ' wfc-auth-dev .yml ' , ' DEFAULT_GROUP ' , ' spring:\n redis:\n host: wfc-redis\n port: 6379\n password:\n ' , ' c3f5481240e7581cc397f5c7918fd78 5 ' , ' 2024-11-18 18:11:28 ' , ' 2024-12-13 21:42:21 ' , NULL , ' 192.168.2.116 ' , ' ' , ' wfc-dev ' , ' 认证中心 ' , ' ' , ' ' , ' yaml ' , ' ' , ' ' ) ;
INSERT INTO ` config_info ` VALUES ( 24 , ' wfc-monitor-dev .yml ' , ' DEFAULT_GROUP ' , ' # spring\nspring:\n security:\n user:\n name: wfc\n password: 123456\n boot:\n ad min:\n ui: \n title: \n ' , ' 6494d8b29fceace33c96fc69cdaf0ec6 ' , ' 2024-11-18 18:11:28 ' , ' 2024-12-13 21:42:39 ' , NULL , ' 192.168.2.116 ' , ' ' , ' wfc-dev ' , ' 监控中心 ' , ' ' , ' ' , ' yaml ' , ' ' , ' ' ) ;
INSERT INTO ` config_info ` VALUES ( 25 , ' wfc-system-dev .yml' , ' DEFAULT_GROUP ' , ' # spring配置\nspring:\n redis:\n host: wfc-redis\n port: 6379\n password:\n d atas ource:\n druid :\n stat-view-servlet:\n enabled: true\n loginUsername: admin\n loginPassword: 123456\n dynamic:\n druid:\n initial-size: 5\n min-idle: 5\n maxActive: 20\n maxWait: 60000\n connectTimeout: 30000\n socketTimeout: 60000 \n timeBetweenEvictionRunsMillis: 60000\n minEvictableIdleTimeMillis: 300000\n validationQuery: SELECT 1 FROM DUAL\n testWhileIdle: true \n testOnBorrow: false\n testOnReturn: false\n poolPreparedStatements: true\n maxPoolPreparedStatementPerConnectionSize: 20\n filters: stat,slf4j\n connectionProperties: druid.stat.mergeSql\\=true;druid.stat.slowSqlMillis\\=5000\n datasource:\n # 主库数据源\n master:\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: jdbc:mysql://wfc-mysql:3306/wfc_system_db?useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=GMT%2B8\n username: root\n password: 123456\n # 从库数据源\n # slave:\n # username: \n # password: \n # url: \n # driver-class-name: \n\n# mybatis配置\nmybatis:\n # 搜索指定包别名\n typeAliasesPackage: org.wfc.system\n # 配置mapper的扫描, 找到所有的mapper.xml映射文件\n mapperLocations: classpath:mapper/**/*.xml\n\n# swagger配置\nswagger:\n title: 系统模块接口文档\n license: Powered By wfc\n licenseUrl: https://wfc.vip ' , ' a355587121f711511c9010a4a8c0d797 ' , ' 2024-11 -18 18:11:28 ' , ' 2024-12-13 21:43:19 ' , NULL , ' 19 2.168.2.116 ' , ' ' , ' wfc-dev ' , ' 系统模块 ' , ' ' , ' ' , ' yaml ' , ' ' , ' ' ) ;
INSERT INTO ` config_info ` VALUES ( 26 , ' wfc-gen-dev .yml ' , ' DEFAULT_GROUP ' , ' # spring配置\n spring:\n redis:\n host: wfc-redis\n port: 6379\n password:\n datasource :\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: jdbc:mysql://wfc-mysql:3306/wfc_system_db?useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=GMT%2B8\n username: root\n password: 123456\n\n# mybatis配置\nmybatis:\n # 搜索指定包别名\n typeAliasesPackage: org.wfc.gen.domain\n # 配置mapper的扫描, 找到所有的mapper.xml映射文件\n mapperLocations: classpath:mapper/**/*.xml\n\n# swagger配置\nswagg er: \n title: 代码生成接口文档\n license: Powered By wfc\n licenseUrl: https://wfc.vip\n\n# 代码生成\ngen:\n # 作者\n author: wfc\n # 默认生成包路径 system 需改成自己的模块名称 如 system monitor tool\n packageName: org.wfc.system\n # 自动去除表前缀, 默认是false\n autoRemovePre: false\n # 表前缀(生成类名不会包含表前缀,多个用逗号分隔)\n tablePrefix: sys_\n ' , ' 5ec7d9b8eb46eca656316e5f817aadb2 ' , ' 2024-11 -18 18:11:28 ' , ' 2024-12-13 21:47:16 ' , NULL , ' 19 2.168.2.116 ' , ' ' , ' wfc-dev ' , ' 代码生成 ' , ' ' , ' ' , ' yaml ' , ' ' , ' ' ) ;
INSERT INTO ` config_info ` VALUES ( 27 , ' wfc-job-dev .yml ' , ' DEFAULT_GROUP ' , ' # spring配置\n spring:\n redis:\n host: wfc-redis\n port: 6379\n password: \n datasource:\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: jdbc:mysql://wfc-mysql:3306/wfc_system_db?useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=GMT%2B8\n username: root\n password: 123456\n\n# mybatis配置\nmybatis:\n # 搜索指定包别名\n typeAliasesPackage: org.wfc.job.domain\n # 配置mapper的扫描, 找到所有的mapper.xml映射文件\n mapperLocations: classpath:mapper/**/*.xml\n\n# swagger配置\nswagger:\n title: 定时任务接口文档\n license: Powered By wfc\n licenseUrl: https://wfc.vip\n ' , ' 1376deec876c0878df743b4d96c7f12 5' , ' 2024-11 -18 18:11:28 ' , ' 2024-12-13 2 1:47 :34 ' , NULL , ' 192.168.2.116 ' , ' ' , ' wfc-dev ' , ' 定时任务 ' , ' ' , ' ' , ' yaml ' , ' ' , ' ' ) ;
INSERT INTO ` config_info ` VALUES ( 28 , ' wfc-file-dev .yml ' , ' DEFAULT_GROUP ' , ' # 本地文件上传 \nfile:\n domain: http://127.0.0.1:9300\n path: /home/wfc/upload\n prefix: /statics\n\n# FastDFS配置\nfdfs:\n domain: http://8.129.231.12\n soTimeout: 3000\n connectTimeout: 2000\n trackerList: 8.129.231.12:22122\n\n# Minio配置\n minio :\n url: http://8.129.231.12:9000\n accessKey: minioadmin\n secretKey: minioadmin\n bucketName: test ' , ' 580197933f0f0b2ba468a0916b911d4b ' , ' 2024-11 -18 18:11:28 ' , ' 2024-12-13 2 1:44:58 ' , NULL , ' 192.168.2.116 ' , ' ' , ' wfc-dev ' , ' 文件服务 ' , ' ' , ' ' , ' yaml ' , ' ' , ' ' ) ;
INSERT INTO ` config_info ` VALUES ( 29 , ' wfc-user-dev .yml ' , ' DEFAULT_GROUP ' , ' # spring配置\nspring:\n redis:\n host: wfc-redis\n port: 6379\n password:\n datasource:\n druid:\n stat-view-servlet:\n enabled: true\n loginUsername: admin\n loginPassword: 123456\n dynamic:\n druid:\n initial-size: 5\n min-idle: 5\n maxActive: 20\n maxWait: 60000\n connectTimeout: 30000\n socketTimeout: 60000\n timeBetweenEvictionRunsMillis: 60000\n minEvictableIdleTimeMillis: 300000\n validationQuery: SELECT 1 FROM DUAL\n testWhileIdle: true\n testOnBorrow: false\n testOnReturn: false\n poolPreparedStatements: true\n maxPoolPreparedStatementPerConnectionSize: 20\n filters: stat,slf4j\n connectionProperties: druid.stat.mergeSql\\=true;druid.stat.slowSqlMillis\\=5000\n datasource:\n # 主库数据源\n master:\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: jdbc:mysql://wfc-mysql:3306/wfc_user _db?useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=GMT%2B8\n username: root\n password: 123456\n # 从库数据源\n # slave:\n # username:\n # password:\n # url:\n # driver-class-name:\n\n# mybatis配置\nmybatis:\n # 搜索指定包别名\n typeAliasesPackage: org.wfc.user \n # 配置mapper的扫描, 找到所有的mapper.xml映射文件\n mapperLocations: classpath:mapper/**/*.xml\n\n# swagger配置\nswagger:\n title: 系统模块接口文档\n license: Powered By wfc\n licenseUrl: https://wfc.vip ' , ' db8c5a7eeebb0d57d180d1a97ad6226e ' , ' 2024-12-28 19:20:25 ' , ' 2024-12-28 19:20:25 ' , NULL , ' 17 2.19.0.1 ' , ' ' , ' wfc-dev ' , ' 用户平台 模块' , NULL , NULL , ' yaml ' , NULL , ' ' ) ;
INSERT INTO ` config_info ` VALUES ( 30 , ' wfc-payment-dev .yml ' , ' DEFAULT_GROUP ' , ' # spring配置\nspring:\n main:\n allow-bean-definition-overriding: true\n \n redis:\n host: wfc-redis\n port: 6379\n password:\n datasource:\n druid:\n stat-view-servlet:\n enabled: true\n loginUsername: admin\n loginPassword: 123456\n dynamic:\n druid:\n initial-size: 5\n min-idle: 5\n maxActive: 20\n maxWait: 60000\n connectTimeout: 30000\n socketTimeout: 60000\n timeBetweenEvictionRunsMillis: 60000\n minEvictableIdleTimeMillis: 300000\n validationQuery: SELECT 1 FROM DUAL\n testWhileIdle: true\n testOnBorrow: false\n testOnReturn: false\n poolPreparedStatements: true\n maxPoolPreparedStatementPerConnectionSize: 20\n filters: stat,slf4j\n connectionProperties: druid.stat.mergeSql\\=true;druid.stat.slowSqlMillis\\=5000\n datasource:\n # 主库数据源\n master:\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: jdbc:mysql://wfc-mysql:3306/wfc_user _db?useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=GMT%2B8\n username: root\n password: 123456\n # 从库数据源\n # slave:\n # username:\n # password:\n # url:\n # driver-class-name:\n \n# mybatis-plus 配置\nmybatis-plus :\n # 搜索指定包别名\n type-a liases-p ackage: org.wfc.system \n # 配置mapper的扫描, 找到所有的mapper.xml映射文件\n mapper-l ocations: classpath:mapper/**/*.xml\n global-config:\n db-config:\n logic-delete-field: del_flag\n logic-delete-value: 1\n logic-not-delete-value: 0\n \n# swagger配置\nswagger:\n title: 系统模块 接口文档\n license: Powered By wfc\n licenseUrl: https://wfc.vip\n\nlogging:\n level:\n root: debug\n org:\n springframework:\n web: debug\n mybatis:\n mapper: debug\n wfc: \n system: debug\n com:\n github:\n binarywang: debug\n file:\n name: /var/log/wfc/wfc-modules-payment.log\n\nwxpay:\n appId: 121412414112\n mchId: 1131412414\n mchKey: 1525342aa \n subAppId: #服务商模式下的子商户公众账号ID \n subMchId: #服务商模式下的子商户号 \n keyPath: /home/wfc/config/payment/wxpay_key.pem\n useSandboxEnv: false\n ' , ' 782c7fb3b169abae667b19cd08b96df8 ' , ' 2024-12-31 10:59:12 ' , ' 2024-12-31 10 :59:12 ' , NULL , ' 17 2.20.0.1 ' , ' ' , ' wfc-dev ' , ' wfc-modules-payment production yaml ' , NULL , NULL , ' yaml ' , NULL , ' ' ) ;
INSERT INTO ` config_info ` VALUES ( 31 , ' sentinel-wfc-gateway-dev ' , ' DEFAULT_GROUP ' , ' [\r\n {\r\n \"resource\": \"wfc-auth\",\r\n \"count\": 500,\r\n \"grade\": 1,\r\n \"limitApp\": \"default\",\r\n \"strategy\": 0,\r\n \"controlBehavior\": 0\r\n },\r\n {\r\n \"resource\": \" wfc- system\",\r\n \"count\": 1000,\r\n \"grade\": 1,\r\n \"limitApp\": \"default\",\r\n \"st rategy\": 0,\r\n \"controlBehavior\": 0\r\n },\r\n {\r\n \"resource\": \"wfc-gen\",\r\n \"count\": 200,\r\n \"grade\": 1,\r\n \"limitApp\": \"default\",\r\n \"strategy\": 0,\r\n \"controlBehavior\": 0\r\n },\r\n {\r\n \"resource\": \" wfc- job\",\r\n \"count\": 300,\r\n \"grade\": 1,\r\n \"limitApp\": \"default\",\r\n \"strategy\": 0,\r\n \"controlBehavior\": 0\r\n }\r\n] ' , ' a8b3ec396dd09d5f2ba494cc80a7afa0 ' , ' 2024-12-31 11:00:43 ' , ' 2024-12-31 11:00:43 ' , NULL , ' 172.20.0.1 ' , ' ' , ' wfc-dev ' , ' 限流策略 ' , NULL , NULL , ' json ' , NULL , ' ' ) ;
INSERT INTO ` config_info ` VALUES ( 41 , ' application-test .yml' , ' DEFAULT_GROUP ' , ' spring:\n autoconfigure:\n exclude: com.alibaba.druid.spring.boot.autoconfigure.DruidD ataS ourceAutoConfigure\n mvc:\n pathmatch:\n matching-strategy: ant_path_matcher\n # 资源信息\n messages:\n # 国际化资源文件路径\n basename: i18n/messages\n\n# feign 配置\nfeign:\n sentinel:\n enabled: true\n okhttp:\n enabled: false\n httpclient:\n enabled: true\n disable-ssl-validation: true\n client:\n config:\n default:\n connectTimeout: 60000\n readTimeout: 60000\n compression:\n request:\n enabled: true\n min-request-size: 8192\n response:\n enabled: true\n\n# 暴露监控端点\nmanagement:\n endpoints:\n web:\n exposure:\n include: \ ' * \ ' \n ' , ' 333d0b5dd60a01407c0107d0e4aec172 ' , ' 2024-11-1 8 18 :11:56 ' , ' 2024-11 -28 20:03:55 ' , NULL , ' 19 2.168.88 .14 ' , ' ' , ' wfc-test ' , ' 通用配置 ' , ' ' , ' ' , ' yaml ' , ' ' , ' ' ) ;
INSERT INTO ` config_info ` VALUES ( 42 , ' wfc-gateway-test .yml ' , ' DEFAULT_GROUP ' , ' spring:\n redis:\n host: wfc-redis\n port: 6379\n password:\n cloud:\n gateway:\n discovery:\n locator:\n lowerCaseServiceId: true\n enabled: true \n routes:\n # 认证中心\n - id: wfc-auth\n uri: lb://wfc-auth\n predicates:\n - Path=/auth/**\n filters:\n # 验证码处理\n - CacheRequestFilter\n - ValidateCodeFilter\n - StripPrefix=1\n # 代码生成\n - id: wfc-gen \n uri : lb://wfc-gen \n p redic ates:\n - Path=/code/**\n filters:\n - StripPrefix=1\n # 定时任务\n - id: wfc-job\n uri: lb://wfc-job\n predicates:\n - Path=/schedule/**\n filters:\n - StripPrefix=1\n # 系统模块\n - id: wfc-system \n uri : lb://wfc-system\n predicates:\n - Path=/system/**\n filters:\n - StripPrefix=1\n # 用户模块 \n - id: wfc-modules-user\n uri: lb://wfc-modules-user \n predicates :\n - Path=/u/**\n filters:\n - StripPrefix=1\n # 文件服务\n - id: wfc-file\n uri: lb://wfc-file \n predicates:\n - Path=/file/**\n filters:\n - StripPrefix=1\n # payment\n - id: wfc-payment\n uri: lb://wfc-payment\n predicates:\n - Path=/payment/**\n filters:\n - StripPrefix=1 \n\n# 安全配置\nsecurity:\n # 验证码\n captcha:\n enabled: true\n mailEnabled: true\n type: math\n # 防止XSS攻击\n xss:\n enabled: true\n excludeUrls:\n - /system/notice\n # 不校验白名单\n ignore:\n whites:\n - /auth/logout\n - /auth/ logi n\n - /auth/register\n - /*/v2/api-docs \n - /*/v3/api-docs\n - /csrf\n - /system/email/code\n - /system/user/checkRepeat\n - /u/user/checkRepeat\n\n# springdoc配置\nspringdoc:\n webjars:\n # 访问前缀\n prefix: ' , ' eec87fd6097c3d5c35d88da9f8280f10 ' , ' 2024-11-1 8 18 :11:5 6 ' , ' 2024-12-26 09:45:05 ' , NULL , ' 172.100.88 .1 ' , ' ' , ' wfc-test ' , ' 网关模块 ' , ' ' , ' ' , ' yaml ' , ' ' , ' ' ) ;
INSERT INTO ` config_info ` VALUES ( 43 , ' wfc-auth-test .yml ' , ' DEFAULT_GROUP ' , ' spring:\n redis:\n host: wfc-redis\n port: 6379\n password:\n# springdoc配置\nspringdoc:\n gatewayUrl: http://wfc-gateway:8080/${spring.application.name}\n api-docs:\n # 是否开启接口文档\n enabled: true\n info:\n # 标题\n title: \ ' 授 权 模 块 接 口 文 档 \ ' \n # 描述\n description: \ ' 授 权 模 块 接 口 描 述 \ ' \n # 作者信息\n contact:\n name: wfc\n url: https://wfc.vip\n ' , ' d77ab6f041b802a9d077756fa36a1fe7 ' , ' 2024-11-1 8 18 :11 :56 ' , ' 2024-12-13 21:49 :53 ' , NULL , ' 19 2.168.2.116 ' , ' ' , ' wfc-test ' , ' 认证中心 ' , ' ' , ' ' , ' yaml ' , ' ' , ' ' ) ;
INSERT INTO ` config_info ` VALUES ( 44 , ' wfc-monitor-test .yml ' , ' DEFAULT_GROUP ' , ' # spring\nspring:\n security:\n user:\n name: wfc\n password: 123456\n boot:\n admin :\n ui:\n title: \n ' , ' 6494d8b29fceace33c96fc69cdaf0ec6 ' , ' 2024-11-18 18:11:56 ' , ' 2024-12-13 21:50:08 ' , NULL , ' 19 2.168.2.116 ' , ' ' , ' wfc-test ' , ' 监控中心 ' , ' ' , ' ' , ' yaml ' , ' ' , ' ' ) ;
INSERT INTO ` config_info ` VALUES ( 4 5, ' wfc-system -test.yml ' , ' DEFAULT_GROUP ' , ' # spring配置\nspring:\n redis:\n host: wfc-redis\n port: 6379\n password:\n datasource:\n druid:\n stat-view-servlet:\n enabled: true\n loginUsername: admin\n loginPassword: 123456\n dynamic:\n druid:\n initial-size: 5\n min-idle: 5\n maxActive: 20\n maxWait: 60000\n connectTimeout: 30000\n socketTimeout: 60000\n timeBetweenEvictionRunsMillis: 60000\n minEvictableIdleTimeMillis: 300000\n validationQuery: SELECT 1 FROM DUAL\n testWhileIdle: true\n testOnBorrow: false\n testOnReturn: false\n poolPreparedStatements: true\n maxPoolPreparedStatementPerConnectionSize: 20\n filters: stat,slf4j\n connectionProperties: druid.stat.mergeSql\\=true;druid.stat.slowSqlMillis\\=5000\n datasource:\n # 主库数据源\n master:\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: jdbc:mysql://wfc-mysql:3306/wfc_system _db?useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=GMT%2B8\n username: root\n password: 123456\n # 从库数据源\n # slave:\n # username: \n # password: \n # url: \n # driver-class-name: \n\n# mybatis配置\nmybatis:\n # 搜索指定包别名\n typeAliasesPackage: org.wfc.system\n # 配置mapper的扫描, 找到所有的mapper.xml映射文件\n mapperLocations: classpath:mapper/**/*.xml\n\n# 邮箱配置\nmail:\n enabled: true\n host: smtp.qq.com\n port: 465\n # 是否需要用户名密码验证\n auth: true\n # 发送方, 遵循RFC-822标准\n from: 707821112@qq.com\n # 用户名( 注意: 如果使用foxmail邮箱, 此处user为qq号) \n user: 707821112@qq.com\n # 密码( 注意, 某些邮箱需要为SMTP服务单独设置密码, 详情查看相关帮助) \n pass: zcbontiutwvebedb\n # 使用 STARTTLS安全连接, STARTTLS是对纯文本通信协议的扩展。\n starttlsEnable: true\n # 使用SSL安全连接\n sslEnable: true\n # SMTP超时时长, 单位毫秒, 缺省值不超时\n timeout: 0\n # Socket连接超时值, 单位毫秒, 缺省值不超时\n connectionTimeout: 0\n\n# springdoc配置\nspringdoc:\n gatewayUrl: http://wfc-gateway:8080/${spring.application.name}\n api-docs:\n # 是否开启接口文档\n enabled: true\n info:\n # 标题\n title: \ ' 系 统 模 块 接 口 文 档 \ ' \n # 描述\n description: \ ' 系 统 模 块 接 口 描 述 \ ' \n # 作者信息\n contact:\n name: wfc\n url: https://wfc.vip ' , ' 7cafbcc15abd4a77ddfa4e133921aaae ' , ' 2024-11-18 18:11:56 ' , ' 2024-12-13 21:51:1 9 ' , NULL , ' 19 2.168.2.116 ' , ' ' , ' wfc-test ' , ' 系统 模块' , ' ' , ' ' , ' yaml ' , ' ' , ' ' ) ;
INSERT INTO ` config_info ` VALUES ( 46 , ' wfc-g en-test.yml ' , ' DEFAULT_GROUP ' , ' # spring配置\nspring:\n redis:\n host: wfc-redis\n port: 6379\n password:\n datasource:\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: jdbc:mysql://wfc-mysql:3306/wfc_system _db?useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=GMT%2B8\n username: root\n password: 123456\n\n# mybatis配置\nmybatis:\n # 搜索指定包别名\n typeA liasesP ackage: org.wfc.gen.domain\n # 配置mapper的扫描, 找到所有的mapper.xml映射文件\n mapperL ocations: classpath:mapper/**/*.xml\n\n# swagger配置\nswagger:\n title: 代码生成 接口文档\n license: Powered By wfc\n licenseUrl: https://wfc.vip\n\n# 代码生成\ngen:\n # 作者\n author: wfc\n # 默认生成包路径 system 需改成自己的模块名称 如 system monitor tool\n packageName: org.wfc.system\n # 自动去除表前缀, 默认是false\n autoRemovePre: false\n # 表前缀(生成类名不会包含表前缀,多个用逗号分隔)\n tablePrefix: sys_\n ' , ' 5ec7d9b8eb46eca656316e5f817aadb2 ' , ' 2024-11-18 18:11 :56 ' , ' 2024-12-13 21:51 :58 ' , NULL , ' 19 2.168.2.116 ' , ' ' , ' wfc-test ' , ' 代码生成 ' , ' ' , ' ' , ' yaml ' , ' ' , ' ' ) ;
INSERT INTO ` config_info ` VALUES ( 47 , ' wfc-job-test .yml' , ' DEFAULT_GROUP ' , ' # spring配置\nspring:\n redis:\n host: wfc-redis\n port: 6379\n password: \n datasource:\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: jdbc:mysql://wfc-mysql:3306/wfc_system_db?useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=GMT%2B8\n username: root\n password: 123456\n\n# mybatis配置\nmybatis:\n # 搜索指定包别名\n typeAliasesPackage: org.wfc.job.domain\n # 配置mapper的扫描, 找到所有的mapper.xml映射文件\n mapperLocations: classpath:mapper/**/*.xml\n\n# swagger配置\nswagger:\n title: 定时任务接口文档\n license: Powered By wfc\n licenseUrl: https://wfc.vip\n ' , ' 1376deec876c0878df743b4d96c7f125 ' , ' 2024-11-18 18:11:56 ' , ' 2024-12-13 21:53:03 ' , NULL , ' 19 2.168.2.116 ' , ' ' , ' wfc-test ', ' 定时任务 ' , ' ' , ' ' , ' yaml ' , ' ' , ' ' ) ;
INSERT INTO ` config_info ` VALUES ( 48 , ' wfc-file-test .yml ' , ' DEFAULT_GROUP ' , ' # 本地文件上传 \nfile:\n domain: http://127.0.0.1:9300\n path: /home/wfc/upload\n prefix: /statics\n\n# FastDFS配置\nfdfs:\n domain: http://8.129.231.12\n soTimeout: 3000\n connectTimeout: 2000 \n trackerList: 8.129.231.12:22122\n\n# Minio配置\nminio:\n url: http://8.129.231.12:9000\n accessKey: minioadmin \n secretKey: minioadmin\n bucketName: test ' , ' 580197933f0f0b2ba468a0916b911d4b ' , ' 2024-11-18 18:11:56 ' , ' 2024-12-13 21:53:22 ' , NULL , ' 19 2.168.2.116 ' , ' ' , ' wfc-test ', ' 文件服务 ' , ' ' , ' ' , ' yaml ' , ' ' , ' ' ) ;
INSERT INTO ` config_info ` VALUES ( 49 , ' wfc-user-test .yml ' , ' DEFAULT_GROUP ' , ' # spring配置\n spring:\n redis:\n host: wfc-redis\n port: 6379\n password:\n datasource:\n druid:\n stat-view-servlet:\n enabled: true\n loginUsername: admin\n loginPassword: 123456\n dynamic:\n druid:\n initial-size: 5\n min-idle: 5\n maxActive: 20\n maxWait: 60000\n connectTimeout: 30000\n socketTimeout: 60000\n timeBetweenEvictionRunsMillis: 60000\n minEvictableIdleTimeMillis: 300000\n validationQuery: SELECT 1 FROM DUAL\n testWhileIdle: true\n testOnBorrow: false\n testOnReturn: false\n poolPreparedStatements: true\n maxPoolPreparedStatementPerConnectionSize: 20\n filters: stat,slf4j\n connectionProperties: druid.stat.mergeSql\\=true;druid.stat.slowSqlMillis\\=5000\n datasource:\n # 主库数据源\n master:\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: jdbc:mysql://wfc-mysql:3306/wfc_user_db?useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=GMT%2B8\n username: root\n password: 123456\n # 从库数据源\n # slave:\n # username:\n # password:\n # url:\n # driver-class-name:\n\n# mybatis配置\nmybatis:\n # 搜索指定包别名\n typeAliasesPackage: org.wfc.user\n # 配置mapper的扫描, 找到所有的mapper.xml映射文件\n mapperLocations: classpath:mapper/**/*.xml\n\n\n# 邮箱配置\nmail:\n enabled: true\n host: smtp.qq.com\n port: 465\n # 是否需要用户名密码验证\n auth: true\n # 发送方, 遵循RFC-822标准\n from: 707821112@qq.com\n # 用户名( 注意: 如果使用foxmail邮箱, 此处user为qq号) \n user: 707821112@qq.com\n # 密码( 注意, 某些邮箱需要为SMTP服务单独设置密码, 详情查看相关帮助) \n pass: zcbontiutwvebedb\n # 使用 STARTTLS安全连接, STARTTLS是对纯文本通信协议的扩展。\n starttlsEnable: true\n # 使用SSL安全连接\n sslEnable: true\n # SMTP超时时长, 单位毫秒, 缺省值不超时\n timeout: 0\n # Socket连接超时值, 单位毫秒, 缺省值不超时\n connectionTimeout: 0\n\n# springdoc配置\nspringdoc:\n gatewayUrl: http://wfc-gateway:8080/${spring.application.name}\n api-docs:\n # 是否开启接口文档\n enabled: true\n info:\n # 标题\n title: \ ' 用 户 模 块 接 口 文 档 \ ' \n # 描述\n description: \ ' 用 户 模 块 接 口 描 述 \ ' \n # 作者信息\n contact:\n name: wfc\n url: https://wfc.vip ' , ' 9d81d4aa99fd5f28bea4860a1ad03d07 ' , ' 2024-12-28 19:22:29 ' , ' 2024-12-28 19:22:29 ' , NULL , ' 172.19.0.1 ' , ' ' , ' wfc-test ', ' 用户平台模块 ' , NULL , NULL , ' yaml ' , NULL , ' ' ) ;
INSERT INTO ` config_info ` VALUES ( 50 , ' wfc-payment-test .yml ' , ' DEFAULT_GROUP ' , ' # spring配置 \nspring:\n main:\n allow-bean-definition-overriding: true\n \n redis:\n host: wfc-redis\n port: 6379\n password:\n datasource:\n druid:\n stat-view-servlet:\n enabled: true\n loginUsername: admin\n loginPassword: 123456\n dynamic:\n druid:\n initial-size: 5\n min-idle: 5\n maxActive: 20\n maxWait: 60000\n connectTimeout: 30000\n socketTimeout: 60000\n timeBetweenEvictionRunsMillis: 60000\n minEvictableIdleTimeMillis: 300000\n validationQuery: SELECT 1 FROM DUAL\n testWhileIdle: true\n testOnBorrow: false\n testOnReturn: false\n poolPreparedStatements: true\n maxPoolPreparedStatementPerConnectionSize: 20\n filters: stat,slf4j\n connectionProperties: druid.stat.mergeSql\\=true;druid.stat.slowSqlMillis\\=5000\n datasource:\n # 主库数据源\n master:\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: jdbc:mysql://wfc-mysql:3306/wfc_user_db?useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=GMT%2B8\n username: root\n password: 123456\n # 从库数据源\n # slave:\n # username:\n # password:\n # url:\n # driver-class-name:\n\n# mybatis-plus配置\nmybatis-plus:\n # 搜索指定包别名\n type-aliases-package: org.wfc.system\n # 配置mapper的扫描, 找到所有的mapper.xml映射文件\n mapper-locations: classpath:mapper/**/*.xml\n global-config:\n db-config:\n logic-delete-field: del_flag\n logic-delete-value: 1\n logic-not-delete-value: 0\n\n# swagger配置\nswagger:\n title: 系统模块接口文档\n license: Powered By wfc\n licenseUrl: https://wfc.vip\n\nlogging:\n level:\n root: debug\n org:\n springframework:\n web: debug\n mybatis:\n mapper: debug\n wfc:\n system: debug\n com:\n github:\n binarywang: debug\n file:\n name: /var/log/wfc/wfc-modules-payment.log\n\nwxpay:\n appId: 121412414112\n mchId: 1131412414\n mchKey: 1525342aa\n subAppId: #服务商模式下的子商户公众账号ID\n subMchId: #服务商模式下的子商户号 \n keyPath: /home/wfc/config/payment/wxpay_key.pem\n useSandboxEnv: false\n ' , ' 782c7fb3 b169a bae667b19cd08b96df8 ' , ' 2024-12-28 19:22:5 0 ' , ' 2024-12-28 19:22:5 0 ' , NULL , ' 172.19.0.1 ' , ' ' , ' wfc-test ', ' wfc-modules-payment production yaml ' , NULL , NULL , ' yaml ' , NULL , ' ' ) ;
INSERT INTO ` config_info ` VALUES ( 51 , ' sentinel-wfc-gateway-test ' , ' DEFAULT_GROUP ' , ' [\r\n {\r\n \"resource\": \"wfc-auth\",\r\n \"count\": 500,\r\n \"grade\": 1,\r\n \"limitApp\": \"default\",\r\n \"strategy\": 0,\r\n \"controlBehavior\": 0\r\n },\r\n {\r\n \"resource\": \"wfc-system\",\r\n \"count\" : 1 000,\r \n \"grade\": 1,\r\n \"limitApp\": \"default\",\r\n \"strategy\": 0,\r\n \"controlBehavior\": 0\r\n },\r\n {\r\n \"resource\": \"wfc-gen\",\r\n \"count\": 200,\r\n \"grade\": 1,\r\n \"limitApp\": \"default\",\r\n \"strategy\": 0,\r\n \"controlBehavior\": 0\r\n },\r\n {\r\n \"resource\": \"wfc-job\",\r\n \"count\": 300,\r\n \"grade\": 1,\r\n \"limitApp\": \"default\",\r\n \"strategy\": 0,\r\n \"controlBehavior\": 0\r\n }\r\n] ' , ' a8b3ec396dd09d5f2ba494cc80a7afa0 ' , ' 2024-12-28 19:28:44 ' , ' 2024-12-28 19:28:44 ' , NULL , ' 172.19.0.1 ' , ' ' , ' wfc-test ', ' 限流策略 ' , NULL , NULL , ' json ' , NULL , ' ' ) ;
INSERT INTO ` config_info ` VALUES ( 61 , ' application-prod .yml' , ' DEFAULT_GROUP ' , ' spring:\n autoconfigure:\n exclude: com.alibaba.druid.spring.boot.autoconfigure.DruidDataSourceAutoConfigure\n mvc:\n pathmatch:\n matching-strategy: ant_path_matcher\n # 资源信息\n messages:\n # 国际化资源文件路径\n basename: i18n/messages\n \n# feign 配置\nfeign:\n sentinel:\n enabled: true\n okhttp:\n enabled: false\n httpclient:\n enabled: true\n disable-ssl-validation: true\n client:\n config:\n default:\n connectTimeout: 60000\n readTimeout: 60000\n compression:\n request:\n enabled: true\n min-request-size: 8192\n response:\n enabled: true\n\n# 暴露监控端点\nmanagement:\n endpoints:\n web:\n exposure:\n include: \ ' * \ ' \n ' , ' 3da71d069327a6468c46292591fe5142 ' , ' 2024-12-13 11:52 :34 ' , ' 2024-12-26 09:40:07 ' , NULL , ' 172.100.88 .1 ' , ' ' , ' wfc-prod ', ' 通用配置 ' , ' ' , ' ' , ' yaml ' , ' ' , ' ' ) ;
INSERT INTO ` config_info ` VALUES ( 62 , ' wfc-gateway-prod .yml ' , ' DEFAULT_GROUP ' , ' spring:\n redis:\n host: wfc-redis\n port: 6379\n password:\n cloud:\n gateway:\n discovery:\n locator:\n lowerCaseServiceId: true \n enabled: true\n routes:\n # 认证中心\n - id: wfc-auth\n uri: lb://wfc-auth\n predicates:\n - Path=/auth/**\n filters:\n # 验证码处理\n - CacheRequestFilter\n - ValidateCodeFilter\n - StripPrefix=1\n # 代码生成\n - id: wfc-gen\n uri: lb://wfc-gen\n predicates:\n - Path=/code/**\n filters:\n - StripPrefix=1\n # 定时任务\n - id: wfc-job\n uri: lb://wfc-job\n predicates:\n - Path=/schedule/**\n filters:\n - StripPrefix=1\n # 系统模块\n - id: wfc-system\n uri: lb://wfc-system\n predicates:\n - Path=/system/**\n filters:\n - StripPrefix=1\n # 用户模块\n - id: wfc-user\n uri: lb://wfc-user\n predicates:\n - Path=/u/**\n filters:\n - StripPrefix=1 \n # 文件服务\n - id: wfc-file\n uri: lb://wfc-file\n predicates:\n - Path=/file/**\n filters:\n - StripPrefix=1\n # payment\n - id: wfc-payment\n uri: lb://wfc-payment\n predicates:\n - Path=/payment/**\n filters:\n - StripPrefix=1 \n\n# 安全配置\nsecurity:\n # 验证码\n captcha:\n enabled: true\n type: math\n # 防止XSS攻击\n xss:\n enabled: true\n excludeUrls:\n - /system/notice\n # 不校验白名单\n ignore:\n whites:\n - /auth/logout\n - /auth/login\n - /auth/register\n - /auth/checkRepeat\n - /*/v2/api-docs\n - /csrf\n ' , ' fcb94d3a2d7c4e779e406e86628437b b' , ' 2024-12-13 11:52 :34 ' , ' 2024-12-31 11:30:0 0 ' , NULL , ' 172.20 .0.1 ' , ' ' , ' wfc-prod ', ' wfc-gateway production ' , ' ' , ' ' , ' yaml ' , ' ' , ' ' ) ;
INSERT INTO ` config_info ` VALUES ( 63 , ' wfc-auth-prod .yml ' , ' DEFAULT_GROUP ' , ' spring:\n redis:\n host: wfc-redis\n port: 6379\n password:\n' , ' c3f5481240e7581cc397f5c7918fd785 ' , ' 2024-12-13 11:52:34 ' , ' 2024-12-13 11:53:35 ' , NULL , ' 19 2.168.2.116 ' , ' ' , ' wfc-prod ', ' 认证中心 ' , ' ' , ' ' , ' yaml ' , ' ' , ' ' ) ;
INSERT INTO ` config_info ` VALUES ( 64 , ' wfc-monitor-prod .yml ' , ' DEFAULT_GROUP ' , ' # spring\nspring:\n security:\n user:\n name: wfc\n password: 123456\n boot:\n admin:\n ui:\n title: visual monitor\n ' , ' c8f896d284d5328aa b16baeb81a3685c ' , ' 2024-12-13 11:52:34 ' , ' 2024-12-13 11:54:04 ' , NULL , ' 19 2.168.2.116 ' , ' ' , ' wfc-prod ' , ' 监控中心 ' , ' ' , ' ' , ' yaml ' , ' ' , ' ' ) ;
INSERT INTO ` config_info ` VALUES ( 65 , ' wfc-system-prod.yml ' , ' DEFAULT_GROUP ' , ' # spring配置\nspring:\n redis:\n host: wfc-redis\n port: 6379\n password:\n datasource:\n druid:\n stat-view-servlet:\n enabled: true\n loginUsername: admin\n loginPassword: 123456\n dynamic:\n druid:\n initial-size: 5\n min-idle: 5\n maxActive: 20\n maxWait: 60000\n connectTimeout: 30000\n socketTimeout: 60000\n timeBetweenEvictionRunsMillis: 60000\n minEvictableIdleTimeMillis: 300000\n validationQuery: SELECT 1 FROM DUAL\n testWhileIdle: true\n testOnBorrow: false\n testOnReturn: false\n poolPreparedStatements: true\n maxPoolPreparedStatementPerConnectionSize: 20\n filters: stat,slf4j\n connectionProperties: druid.stat.mergeSql\\=true;druid.stat.slowSqlMillis\\=5000\n datasource:\n # 主库数据源\n master:\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: jdbc:mysql://wfc-mysql:3306/wfc_system_db?useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=GMT%2B8\n username: root\n password: 123456\n # 从库数据源\n # slave:\n # username: \n # password: \n # url: \n # driver-class-name: \n\n# mybatis配置\nmybatis:\n # 搜索指定包别名\n typeAliasesPackage: org.wfc.system\n # 配置mapper的扫描, 找到所有的mapper.xml映射文件\n mapperLocations: classpath:mapper/**/*.xml\n\n# swagger配置\nswagger:\n title: 系统模块接口文档\n license: Powered By wfc\n licenseUrl: https://wfc.vip ' , ' a355587121f711511c9010a4a8c0d797 ' , ' 2024-12-13 11:52:34 ' , ' 2024-12-13 11:54:49 ' , NULL , ' 192.168.2.116 ' , ' ' , ' wfc-prod ' , ' 系统模块 ' , ' ' , ' ' , ' yaml ' , ' ' , ' ' ) ;
INSERT INTO ` config_info ` VALUES ( 66 , ' wfc-gen-prod.yml ' , ' DEFAULT_GROUP ' , ' # spring配置\nspring:\n redis:\n host: wfc-redis\n port: 6379\n password:\n datasource:\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: jdbc:mysql://wfc-mysql:3306/wfc_system_db?useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=GMT%2B8\n username: root\n password: 123456\n\n# mybatis配置\nmybatis:\n # 搜索指定包别名\n typeAliasesPackage: org.wfc.gen.domain\n # 配置mapper的扫描, 找到所有的mapper.xml映射文件\n mapperLocations: classpath:mapper/**/*.xml\n\n# swagger配置\nswagger:\n title: 代码生成接口文档\n license: Powered By wfc\n licenseUrl: https://wfc.vip\n\n# 代码生成\ngen:\n # 作者\n author: wfc\n # 默认生成包路径 system 需改成自己的模块名称 如 system monitor tool\n packageName: org.wfc.system\n # 自动去除表前缀, 默认是false\n autoRemovePre: false\n # 表前缀(生成类名不会包含表前缀,多个用逗号分隔)\n tablePrefix: sys_\n ' , ' 5ec7d9b8eb46eca656316e5f817aadb2 ' , ' 2024-12-13 11:52:34 ' , ' 2024-12-13 11:55:28 ' , NULL , ' 192.168.2.116 ' , ' ' , ' wfc-prod ' , ' 代码生成 ' , ' ' , ' ' , ' yaml ' , ' ' , ' ' ) ;
INSERT INTO ` config_info ` VALUES ( 67 , ' wfc-job-prod.yml ' , ' DEFAULT_GROUP ' , ' # spring配置\nspring:\n redis:\n host: wfc-redis\n port: 6379\n password: \n datasource:\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: jdbc:mysql://wfc-mysql:3306/wfc_system_db?useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=GMT%2B8\n username: root\n password: 123456\n\n# mybatis配置\nmybatis:\n # 搜索指定包别名\n typeAliasesPackage: org.wfc.job.domain\n # 配置mapper的扫描, 找到所有的mapper.xml映射文件\n mapperLocations: classpath:mapper/**/*.xml\n\n# swagger配置\nswagger:\n title: 定时任务接口文档\n license: Powered By wfc\n licenseUrl: https://wfc.vip\n ' , ' 1376deec876c0878df743b4d96c7f125 ' , ' 2024-12-13 11:52:34 ' , ' 2024-12-13 11:56:07 ' , NULL , ' 192.168.2.116 ' , ' ' , ' wfc-prod ' , ' 定时任务 ' , ' ' , ' ' , ' yaml ' , ' ' , ' ' ) ;
INSERT INTO ` config_info ` VALUES ( 68 , ' wfc-file-prod.yml ' , ' DEFAULT_GROUP ' , ' # 本地文件上传 \nfile:\n domain: http://127.0.0.1:9300\n path: /home/wfc/upload\n prefix: /statics\n\n# FastDFS配置\nfdfs:\n domain: http://8.129.231.12\n soTimeout: 3000\n connectTimeout: 2000\n trackerList: 8.129.231.12:22122\n\n# Minio配置\nminio:\n url: http://8.129.231.12:9000\n accessKey: minioadmin\n secretKey: minioadmin\n bucketName: test ' , ' 580197933f0f0b2ba468a0916b911d4b ' , ' 2024-12-13 11:52:34 ' , ' 2024-12-13 11:57:18 ' , NULL , ' 192.168.2.116 ' , ' ' , ' wfc-prod ' , ' 文件服务 ' , ' ' , ' ' , ' yaml ' , ' ' , ' ' ) ;
INSERT INTO ` config_info ` VALUES ( 69 , ' wfc-user-prod.yml ' , ' DEFAULT_GROUP ' , ' # spring配置\nspring:\n redis:\n host: wfc-redis\n port: 6379\n password:\n datasource:\n druid:\n stat-view-servlet:\n enabled: true\n loginUsername: admin\n loginPassword: 123456\n dynamic:\n druid:\n initial-size: 5\n min-idle: 5\n maxActive: 20\n maxWait: 60000\n connectTimeout: 30000\n socketTimeout: 60000\n timeBetweenEvictionRunsMillis: 60000\n minEvictableIdleTimeMillis: 300000\n validationQuery: SELECT 1 FROM DUAL\n testWhileIdle: true\n testOnBorrow: false\n testOnReturn: false\n poolPreparedStatements: true\n maxPoolPreparedStatementPerConnectionSize: 20\n filters: stat,slf4j\n connectionProperties: druid.stat.mergeSql\\=true;druid.stat.slowSqlMillis\\=5000\n datasource:\n # 主库数据源\n master:\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: jdbc:mysql://wfc-mysql:3306/wfc_user_db?useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=GMT%2B8\n username: root\n password: 123456\n # 从库数据源\n # slave:\n # username:\n # password:\n # url:\n # driver-class-name:\n\n# mybatis配置\nmybatis:\n # 搜索指定包别名\n typeAliasesPackage: org.wfc.user\n # 配置mapper的扫描, 找到所有的mapper.xml映射文件\n mapperLocations: classpath:mapper/**/*.xml\n\n# swagger配置\nswagger:\n title: 系统模块接口文档\n license: Powered By wfc\n licenseUrl: https://wfc.vip ' , ' db8c5a7eeebb0d57d180d1a97ad6226e ' , ' 2024-12-28 19:17:13 ' , ' 2024-12-28 19:17:13 ' , NULL , ' 172.19.0.1 ' , ' ' , ' wfc-prod ' , ' 用户平台模块 ' , NULL , NULL , ' yaml ' , NULL , ' ' ) ;
INSERT INTO ` config_info ` VALUES ( 70 , ' wfc-payment-prod.yml ' , ' DEFAULT_GROUP ' , ' # spring配置\nspring:\n application:\n name: wfc-payment\n cloud:\n nacos:\n discovery:\n server-addr: ${NACOS_SERVER_ADDR:wfc-nacos}:${NACOS_SERVER_PORT:8848}\n namespace: ${NACOS_NAMESPACE:wfc-prod}\n \n main:\n allow-bean-definition-overriding: true\n \n redis:\n host: wfc-redis\n port: 6379\n password:\n datasource:\n druid:\n stat-view-servlet:\n enabled: true\n loginUsername: admin\n loginPassword: 123456\n dynamic:\n druid:\n initial-size: 5\n min-idle: 5\n maxActive: 20\n maxWait: 60000\n connectTimeout: 30000\n socketTimeout: 60000\n timeBetweenEvictionRunsMillis: 60000\n minEvictableIdleTimeMillis: 300000\n validationQuery: SELECT 1 FROM DUAL\n testWhileIdle: true\n testOnBorrow: false\n testOnReturn: false\n poolPreparedStatements: true\n maxPoolPreparedStatementPerConnectionSize: 20\n filters: stat,slf4j\n connectionProperties: druid.stat.mergeSql\\=true;druid.stat.slowSqlMillis\\=5000\n datasource:\n # 主库数据源\n master:\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: jdbc:mysql://wfc-mysql:3306/wfc_user_db?useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=GMT%2B8\n username: root\n password: 123456\n # 从库数据源\n # slave:\n # username:\n # password:\n # url:\n # driver-class-name:\n\n# mybatis-plus配置\nmybatis-plus:\n # 搜索指定包别名\n type-aliases-package: org.wfc.system\n # 配置mapper的扫描, 找到所有的mapper.xml映射文件\n mapper-locations: classpath:mapper/**/*.xml\n global-config:\n db-config:\n logic-delete-field: del_flag\n logic-delete-value: 1\n logic-not-delete-value: 0\n\n# swagger配置\nswagger:\n title: 系统模块接口文档\n license: Powered By wfc\n licenseUrl: https://wfc.vip\n\nlogging:\n level:\n root: DEBUG\n org:\n springframework: DEBUG\n mybatis:\n mapper: DEBUG\n com:\n github:\n binarywang: DEBUG\n file:\n name: /opt/wfc/logs/wfc-payment.log\n\nwxpay:\n appId: 121412414112\n mchId: 1131412414\n mchKey: 1525342aa\n subAppId: #服务商模式下的子商户公众账号ID\n subMchId: #服务商模式下的子商户号 \n keyPath: /opt/wfc/conf/wxpay/wxpay_key.pem\n useSandboxEnv: true\n\nalipay:\n appId: 121412414112\n privateKey: 1131412414\n publicKey: 1525342aa\n notifyUrl: http://wfc-gateway:${GATEWAY_SERVER_PORT:8080}/alipay/notify\n returnUrl: http://wfc-gateway:${GATEWAY_SERVER_PORT:8080}/alipay/return\n signType: RSA2\n charset: utf-8\n gatewayUrl: https://openapi.alipaydev.com/gateway.do\n logPath: /opt/wfc/logs/alipay/alipay_log.txt\n maxQueryRetry: 5\n queryDuration: 5\n maxCancelRetry: 3\n cancelDuration: 2\n heartbeatDelay: 5\n heartbeatDuration: 5\n storeId: \n storeName: \n supportEmail: \n supportPhone:\n\nccpay:\n url: https://api.paymentgateway.com/v1/payments\n apiKey: api-key-from-nacos\n merchantId: merchant-id-from-nacos\n currency: USD\n timeout: 30\n callbackUrl: https://wfc-gateway:${GATEWAY_SERVER_PORT:8080}/payment/callback ' , ' 960f4bfa0b0750e743cbda22d61ed666 ' , ' 2024-12-28 19:17:46 ' , ' 2024-12-31 11:08:21 ' , NULL , ' 172.20.0.1 ' , ' ' , ' wfc-prod ' , ' wfc-modules-payment production yaml ' , ' ' , ' ' , ' yaml ' , ' ' , ' ' ) ;
INSERT INTO ` config_info ` VALUES ( 71 , ' sentinel-wfc-gateway-prod ' , ' DEFAULT_GROUP ' , ' [\r\n {\r\n \"resource\": \"wfc-auth\",\r\n \"count\": 500,\r\n \"grade\": 1,\r\n \"limitApp\": \"default\",\r\n \"strategy\": 0,\r\n \"controlBehavior\": 0\r\n },\r\n {\r\n \"resource\": \"wfc-system\",\r\n \"count\": 1000,\r\n \"grade\": 1,\r\n \"limitApp\": \"default\",\r\n \"strategy\": 0,\r\n \"controlBehavior\": 0\r\n },\r\n {\r\n \"resource\": \"wfc-gen\",\r\n \"count\": 200,\r\n \"grade\": 1,\r\n \"limitApp\": \"default\",\r\n \"strategy\": 0,\r\n \"controlBehavior\": 0\r\n },\r\n {\r\n \"resource\": \"wfc-job\",\r\n \"count\": 300,\r\n \"grade\": 1,\r\n \"limitApp\": \"default\",\r\n \"strategy\": 0,\r\n \"controlBehavior\": 0\r\n }\r\n] ' , ' a8b3ec396dd09d5f2ba494cc80a7afa0 ' , ' 2024-12-28 19:27:43 ' , ' 2024-12-28 19:27:43 ' , NULL , ' 172.19.0.1 ' , ' ' , ' wfc-prod ' , ' 限流策略 ' , NULL , NULL , ' json ' , NULL , ' ' ) ;
INSERT INTO ` config_info ` VALUES ( 72 , ' sentinel-wfc-gateway-test ' , ' DEFAULT_GROUP ' , ' [\r\n {\r\n \"resource\": \"wfc-auth\",\r\n \"count\": 500,\r\n \"grade\": 1,\r\n \"limitApp\": \"default\",\r\n \"strategy\": 0,\r\n \"controlBehavior\": 0\r\n },\r\n {\r\n \"resource\": \"wfc-system\",\r\n \"count\": 1000,\r\n \"grade\": 1,\r\n \"limitApp\": \"default\",\r\n \"strategy\": 0,\r\n \"controlBehavior\": 0\r\n },\r\n {\r\n \"resource\": \"wfc-gen\",\r\n \"count\": 200,\r\n \"grade\": 1,\r\n \"limitApp\": \"default\",\r\n \"strategy\": 0,\r\n \"controlBehavior\": 0\r\n },\r\n {\r\n \"resource\": \"wfc-job\",\r\n \"count\": 300,\r\n \"grade\": 1,\r\n \"limitApp\": \"default\",\r\n \"strategy\": 0,\r\n \"controlBehavior\": 0\r\n }\r\n] ' , ' a8b3ec396dd09d5f2ba494cc80a7afa0 ' , ' 2024-12-28 19:28:44 ' , ' 2024-12-28 19:28:44 ' , NULL , ' 172.19.0.1 ' , ' ' , ' wfc-test ' , ' 限流策略 ' , NULL , NULL , ' json ' , NULL , ' ' ) ;
INSERT INTO ` config_info ` VALUES ( 73 , ' sentinel-wfc-gateway-dev ' , ' DEFAULT_GROUP ' , ' [\r\n {\r\n \"resource\": \"wfc-auth\",\r\n \"count\": 500,\r\n \"grade\": 1,\r\n \"limitApp\": \"default\",\r\n \"strategy\": 0,\r\n \"controlBehavior\": 0\r\n },\r\n {\r\n \"resource\": \"wfc-system\",\r\n \"count\": 1000,\r\n \"grade\": 1,\r\n \"limitApp\": \"default\",\r\n \"strategy\": 0,\r\n \"controlBehavior\": 0\r\n },\r\n {\r\n \"resource\": \"wfc-gen\",\r\n \"count\": 200,\r\n \"grade\": 1,\r\n \"limitApp\": \"default\",\r\n \"strategy\": 0,\r\n \"controlBehavior\": 0\r\n },\r\n {\r\n \"resource\": \"wfc-job\",\r\n \"count\": 300,\r\n \"grade\": 1,\r\n \"limitApp\": \"default\",\r\n \"strategy\": 0,\r\n \"controlBehavior\": 0\r\n }\r\n] ' , ' a8b3ec396dd09d5f2ba494cc80a7afa0 ' , ' 2024-12-28 19:29:28 ' , ' 2024-12-28 19:29:28 ' , NULL , ' 172.19.0.1 ' , ' ' , ' wfc-dev ' , ' 限流策略 ' , NULL , NULL , ' json ' , NULL , ' ' ) ;
INSERT INTO ` config_info ` VALUES ( 75 , ' sentinel-wfc-gateway ' , ' DEFAULT_GROUP ' , ' [\r\n {\r\n \"resource\": \"wfc-auth\",\r\n \"count\": 500,\r\n \"grade\": 1,\r\n \"limitApp\": \"default\",\r\n \"strategy\": 0,\r\n \"controlBehavior\": 0\r\n },\r\n {\r\n \"resource\": \"wfc-system\",\r\n \"count\": 1000,\r\n \"grade\": 1,\r\n \"limitApp\": \"default\",\r\n \"strategy\": 0,\r\n \"controlBehavior\": 0\r\n },\r\n {\r\n \"resource\": \"wfc-gen\",\r\n \"count\": 200,\r\n \"grade\": 1,\r\n \"limitApp\": \"default\",\r\n \"strategy\": 0,\r\n \"controlBehavior\": 0\r\n },\r\n {\r\n \"resource\": \"wfc-job\",\r\n \"count\": 300,\r\n \"grade\": 1,\r\n \"limitApp\": \"default\",\r\n \"strategy\": 0,\r\n \"controlBehavior\": 0\r\n }\r\n] ' , ' a8b3ec396dd09d5f2ba494cc80a7afa0 ' , ' 2024-12-28 19:30:14 ' , ' 2024-12-28 19:30:14 ' , NULL , ' 172.19.0.1 ' , ' ' , ' ' , ' 限流策略 ' , NULL , NULL , ' json ' , NULL , ' ' ) ;
-- ----------------------------
-- Table structure for config_info_aggr
@@ -234,12 +233,11 @@ CREATE TABLE `his_config_info` (
INDEX ` idx_gmt_create ` ( ` gmt_create ` ) USING BTREE ,
INDEX ` idx_gmt_modified ` ( ` gmt_modified ` ) USING BTREE ,
INDEX ` idx_did ` ( ` data_id ` ) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 206 CHARACTER SET = utf8 COLLATE = utf8_bin COMMENT = ' 多租户改造 ' ROW_FORMAT = DYNAMIC ;
) ENGINE = InnoDB AUTO_INCREMENT = 242 CHARACTER SET = utf8 COLLATE = utf8_bin COMMENT = ' 多租户改造 ' ROW_FORMAT = DYNAMIC ;
-- ----------------------------
-- Records of his_config_info
-- ----------------------------
INSERT INTO ` his_config_info ` VALUES ( 20 , 91 , ' wfc-gateway-test.yml ' , ' DEFAULT_GROUP ' , ' ' , ' spring:\n redis:\n host: wfc-redis\n port: 6379\n password:\n cloud:\n gateway:\n discovery:\n locator:\n lowerCaseServiceId: true\n enabled: true\n routes:\n # 认证中心\n - id: wfc-auth\n uri: lb://wfc-auth\n predicates:\n - Path=/auth/**\n filters:\n # 验证码处理\n - CacheRequestFilter\n - ValidateCodeFilter\n - StripPrefix=1\n # 代码生成\n - id: wfc-gen\n uri: lb://wfc-gen\n predicates:\n - Path=/code/**\n filters:\n - StripPrefix=1\n # 定时任务\n - id: wfc-job\n uri: lb://wfc-job\n predicates:\n - Path=/schedule/**\n filters:\n - StripPrefix=1\n # 系统模块\n - id: wfc-system\n uri: lb://wfc-system\n predicates:\n - Path=/system/**\n filters:\n - StripPrefix=1\n # 用户模块\n - id: wfc-modules-user\n uri: lb://wfc-modules-user\n predicates:\n - Path=/u/**\n filters:\n - StripPrefix=1\n # 文件服务\n - id: wfc-file\n uri: lb://wfc-file\n predicates:\n - Path=/file/**\n filters:\n - StripPrefix=1\n\n# 安全配置\nsecurity:\n # 验证码\n captcha:\n enabled: true\n mailEnabled: true\n type: math\n # 防止XSS攻击\n xss:\n enabled: true\n excludeUrls:\n - /system/notice\n # 不校验白名单\n ignore:\n whites:\n - /auth/logout\n - /auth/login\n - /auth/register\n - /*/v2/api-docs\n - /*/v3/api-docs\n - /csrf\n - /system/email/code\n - /system/user/checkRepeat\n\n# springdoc配置\nspringdoc:\n webjars:\n # 访问前缀\n prefix: ' , ' 7912a59ee7fb5ef344ba8b8066fa0a86 ' , ' 2024-11-29 15:42:53 ' , ' 2024-11-29 07:42:54 ' , NULL , ' 192.168.88.14 ' , ' U ' , ' wfc-test ' , ' ' ) ;
INSERT INTO ` his_config_info ` VALUES ( 22 , 92 , ' wfc-monitor-test.yml ' , ' DEFAULT_GROUP ' , ' ' , ' # spring\nspring:\n security:\n user:\n name: wfc\n password: 123456\n boot:\n admin:\n ui:\n title: 若依服务状态监控\n ' , ' 7546d5a605e371c8b20e6fe3b4dd96f2 ' , ' 2024-12-03 10:48:27 ' , ' 2024-12-03 02:48:28 ' , NULL , ' 192.168.2.158 ' , ' U ' , ' wfc-test ' , ' ' ) ;
INSERT INTO ` his_config_info ` VALUES ( 22 , 93 , ' wfc-monitor-test.yml ' , ' DEFAULT_GROUP ' , ' ' , ' # spring\nspring:\n security:\n user:\n name: wfc\n password: 123456\n boot:\n admin:\n ui:\n title: 若依服务状态监控\n ' , ' 7546d5a605e371c8b20e6fe3b4dd96f2 ' , ' 2024-12-03 11:23:24 ' , ' 2024-12-03 03:23:25 ' , NULL , ' 192.168.2.158 ' , ' U ' , ' wfc-test ' , ' ' ) ;
INSERT INTO ` his_config_info ` VALUES ( 31 , 94 , ' wfc-monitor-cyc.yml ' , ' DEFAULT_GROUP ' , ' ' , ' # spring\nspring:\n security:\n user:\n name: wfc\n password: 123456\n boot:\n admin:\n ui:\n title: 若依服务状态监控\n ' , ' 7546d5a605e371c8b20e6fe3b4dd96f2 ' , ' 2024-12-03 11:26:00 ' , ' 2024-12-03 03:26:01 ' , NULL , ' 192.168.2.158 ' , ' U ' , ' wfc-cyc ' , ' ' ) ;
@@ -354,6 +352,42 @@ INSERT INTO `his_config_info` VALUES (0, 202, 'sentinel-wfc-gateway-pub', 'DEFAU
INSERT INTO ` his_config_info ` VALUES ( 9 , 203 , ' sentinel-wfc-gateway ' , ' DEFAULT_GROUP ' , ' ' , ' [\r\n {\r\n \"resource\": \"wfc-auth\",\r\n \"count\": 500,\r\n \"grade\": 1,\r\n \"limitApp\": \"default\",\r\n \"strategy\": 0,\r\n \"controlBehavior\": 0\r\n },\r\n {\r\n \"resource\": \"wfc-system\",\r\n \"count\": 1000,\r\n \"grade\": 1,\r\n \"limitApp\": \"default\",\r\n \"strategy\": 0,\r\n \"controlBehavior\": 0\r\n },\r\n {\r\n \"resource\": \"wfc-gen\",\r\n \"count\": 200,\r\n \"grade\": 1,\r\n \"limitApp\": \"default\",\r\n \"strategy\": 0,\r\n \"controlBehavior\": 0\r\n },\r\n {\r\n \"resource\": \"wfc-job\",\r\n \"count\": 300,\r\n \"grade\": 1,\r\n \"limitApp\": \"default\",\r\n \"strategy\": 0,\r\n \"controlBehavior\": 0\r\n }\r\n] ' , ' a8b3ec396dd09d5f2ba494cc80a7afa0 ' , ' 2024-12-28 19:29:59 ' , ' 2024-12-28 19:29:59 ' , NULL , ' 172.19.0.1 ' , ' D ' , ' ' , ' ' ) ;
INSERT INTO ` his_config_info ` VALUES ( 0 , 204 , ' sentinel-wfc-gateway ' , ' DEFAULT_GROUP ' , ' ' , ' [\r\n {\r\n \"resource\": \"wfc-auth\",\r\n \"count\": 500,\r\n \"grade\": 1,\r\n \"limitApp\": \"default\",\r\n \"strategy\": 0,\r\n \"controlBehavior\": 0\r\n },\r\n {\r\n \"resource\": \"wfc-system\",\r\n \"count\": 1000,\r\n \"grade\": 1,\r\n \"limitApp\": \"default\",\r\n \"strategy\": 0,\r\n \"controlBehavior\": 0\r\n },\r\n {\r\n \"resource\": \"wfc-gen\",\r\n \"count\": 200,\r\n \"grade\": 1,\r\n \"limitApp\": \"default\",\r\n \"strategy\": 0,\r\n \"controlBehavior\": 0\r\n },\r\n {\r\n \"resource\": \"wfc-job\",\r\n \"count\": 300,\r\n \"grade\": 1,\r\n \"limitApp\": \"default\",\r\n \"strategy\": 0,\r\n \"controlBehavior\": 0\r\n }\r\n] ' , ' a8b3ec396dd09d5f2ba494cc80a7afa0 ' , ' 2024-12-28 19:30:14 ' , ' 2024-12-28 19:30:14 ' , NULL , ' 172.19.0.1 ' , ' I ' , ' ' , ' ' ) ;
INSERT INTO ` his_config_info ` VALUES ( 74 , 205 , ' sentinel-wfc-gateway-pub ' , ' DEFAULT_GROUP ' , ' ' , ' [\r\n {\r\n \"resource\": \"wfc-auth\",\r\n \"count\": 500,\r\n \"grade\": 1,\r\n \"limitApp\": \"default\",\r\n \"strategy\": 0,\r\n \"controlBehavior\": 0\r\n },\r\n {\r\n \"resource\": \"wfc-system\",\r\n \"count\": 1000,\r\n \"grade\": 1,\r\n \"limitApp\": \"default\",\r\n \"strategy\": 0,\r\n \"controlBehavior\": 0\r\n },\r\n {\r\n \"resource\": \"wfc-gen\",\r\n \"count\": 200,\r\n \"grade\": 1,\r\n \"limitApp\": \"default\",\r\n \"strategy\": 0,\r\n \"controlBehavior\": 0\r\n },\r\n {\r\n \"resource\": \"wfc-job\",\r\n \"count\": 300,\r\n \"grade\": 1,\r\n \"limitApp\": \"default\",\r\n \"strategy\": 0,\r\n \"controlBehavior\": 0\r\n }\r\n] ' , ' a8b3ec396dd09d5f2ba494cc80a7afa0 ' , ' 2024-12-28 19:30:18 ' , ' 2024-12-28 19:30:19 ' , NULL , ' 172.19.0.1 ' , ' D ' , ' ' , ' ' ) ;
INSERT INTO ` his_config_info ` VALUES ( 55 , 206 , ' wfc-payment-prod.yml ' , ' DEFAULT_GROUP ' , ' ' , ' # spring配置\nspring:\n application:\n name: wfc-payment\n cloud:\n nacos:\n discovery:\n server-addr: ${NACOS_SERVER_ADDR:wfc-nacos}:${NACOS_SERVER_PORT:8848}\n namespace: ${NACOS_NAMESPACE:wfc-prod}\n \n main:\n allow-bean-definition-overriding: true\n \n redis:\n host: wfc-redis\n port: 6379\n password:\n datasource:\n druid:\n stat-view-servlet:\n enabled: true\n loginUsername: admin\n loginPassword: 123456\n dynamic:\n druid:\n initial-size: 5\n min-idle: 5\n maxActive: 20\n maxWait: 60000\n connectTimeout: 30000\n socketTimeout: 60000\n timeBetweenEvictionRunsMillis: 60000\n minEvictableIdleTimeMillis: 300000\n validationQuery: SELECT 1 FROM DUAL\n testWhileIdle: true\n testOnBorrow: false\n testOnReturn: false\n poolPreparedStatements: true\n maxPoolPreparedStatementPerConnectionSize: 20\n filters: stat,slf4j\n connectionProperties: druid.stat.mergeSql\\=true;druid.stat.slowSqlMillis\\=5000\n datasource:\n # 主库数据源\n master:\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: jdbc:mysql://wfc-mysql:3306/wfc_user_db?useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=GMT%2B8\n username: root\n password: 123456\n # 从库数据源\n # slave:\n # username:\n # password:\n # url:\n # driver-class-name:\n\n# mybatis-plus配置\nmybatis-plus:\n # 搜索指定包别名\n type-aliases-package: org.wfc.system\n # 配置mapper的扫描, 找到所有的mapper.xml映射文件\n mapper-locations: classpath:mapper/**/*.xml\n global-config:\n db-config:\n logic-delete-field: del_flag\n logic-delete-value: 1\n logic-not-delete-value: 0\n\n# swagger配置\nswagger:\n title: 系统模块接口文档\n license: Powered By wfc\n licenseUrl: https://wfc.vip\n\nlogging:\n level:\n root: debug\n org:\n springframework:\n web: debug\n mybatis:\n mapper: debug\n wfc:\n system: debug\n com:\n github:\n binarywang: debug\n file:\n name: /var/log/wfc/wfc-modules-payment.log\n\nwxpay:\n appId: 121412414112\n mchId: 1131412414\n mchKey: 1525342aa\n subAppId: #服务商模式下的子商户公众账号ID\n subMchId: #服务商模式下的子商户号 \n keyPath: /opt/wfc/conf/wxpay/wxpay_key.pem\n useSandboxEnv: true\n\nalipay:\n appId: 121412414112\n privateKey: 1131412414\n publicKey: 1525342aa\n notifyUrl: http://wfc-gateway:${GATEWAY_SERVER_PORT:8080}/alipay/notify\n returnUrl: http://wfc-gateway:${GATEWAY_SERVER_PORT:8080}/alipay/return\n signType: RSA2\n charset: utf-8\n gatewayUrl: https://openapi.alipaydev.com/gateway.do\n logPath: /opt/wfc/logs/alipay/alipay_log.txt\n maxQueryRetry: 5\n queryDuration: 5\n maxCancelRetry: 3\n cancelDuration: 2\n heartbeatDelay: 5\n heartbeatDuration: 5\n storeId: \n storeName: \n supportEmail: \n supportPhone:\n\nccpay:\n url: https://api.paymentgateway.com/v1/payments\n apiKey: api-key\n merchantId: merchant-id\n currency: USD\n timeout: 30\n callbackUrl: https://wfc-gateway:${GATEWAY_SERVER_PORT:8080}/payment/callback ' , ' b2faf462e3eb9d52c2a40a2917daceb3 ' , ' 2024-12-31 08:53:34 ' , ' 2024-12-31 08:53:34 ' , NULL , ' 172.20.0.1 ' , ' U ' , ' wfc-prod ' , ' ' ) ;
INSERT INTO ` his_config_info ` VALUES ( 55 , 207 , ' wfc-payment-prod.yml ' , ' DEFAULT_GROUP ' , ' ' , ' # spring配置\nspring:\n application:\n name: wfc-payment\n cloud:\n nacos:\n discovery:\n server-addr: ${NACOS_SERVER_ADDR:wfc-nacos}:${NACOS_SERVER_PORT:8848}\n namespace: ${NACOS_NAMESPACE:wfc-prod}\n \n main:\n allow-bean-definition-overriding: true\n \n redis:\n host: wfc-redis\n port: 6379\n password:\n datasource:\n druid:\n stat-view-servlet:\n enabled: true\n loginUsername: admin\n loginPassword: 123456\n dynamic:\n druid:\n initial-size: 5\n min-idle: 5\n maxActive: 20\n maxWait: 60000\n connectTimeout: 30000\n socketTimeout: 60000\n timeBetweenEvictionRunsMillis: 60000\n minEvictableIdleTimeMillis: 300000\n validationQuery: SELECT 1 FROM DUAL\n testWhileIdle: true\n testOnBorrow: false\n testOnReturn: false\n poolPreparedStatements: true\n maxPoolPreparedStatementPerConnectionSize: 20\n filters: stat,slf4j\n connectionProperties: druid.stat.mergeSql\\=true;druid.stat.slowSqlMillis\\=5000\n datasource:\n # 主库数据源\n master:\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: jdbc:mysql://wfc-mysql:3306/wfc_user_db?useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=GMT%2B8\n username: root\n password: 123456\n # 从库数据源\n # slave:\n # username:\n # password:\n # url:\n # driver-class-name:\n\n# mybatis-plus配置\nmybatis-plus:\n # 搜索指定包别名\n type-aliases-package: org.wfc.system\n # 配置mapper的扫描, 找到所有的mapper.xml映射文件\n mapper-locations: classpath:mapper/**/*.xml\n global-config:\n db-config:\n logic-delete-field: del_flag\n logic-delete-value: 1\n logic-not-delete-value: 0\n\n# swagger配置\nswagger:\n title: 系统模块接口文档\n license: Powered By wfc\n licenseUrl: https://wfc.vip\n\nlogging:\n level:\n root: debug\n org:\n springframework:\n web: debug\n mybatis:\n mapper: debug\n wfc:\n system: debug\n com:\n github:\n binarywang: debug\n file:\n name: /opt/wfc/logs/wfc-payment.log\n\nwxpay:\n appId: 121412414112\n mchId: 1131412414\n mchKey: 1525342aa\n subAppId: #服务商模式下的子商户公众账号ID\n subMchId: #服务商模式下的子商户号 \n keyPath: /opt/wfc/conf/wxpay/wxpay_key.pem\n useSandboxEnv: true\n\nalipay:\n appId: 121412414112\n privateKey: 1131412414\n publicKey: 1525342aa\n notifyUrl: http://wfc-gateway:${GATEWAY_SERVER_PORT:8080}/alipay/notify\n returnUrl: http://wfc-gateway:${GATEWAY_SERVER_PORT:8080}/alipay/return\n signType: RSA2\n charset: utf-8\n gatewayUrl: https://openapi.alipaydev.com/gateway.do\n logPath: /opt/wfc/logs/alipay/alipay_log.txt\n maxQueryRetry: 5\n queryDuration: 5\n maxCancelRetry: 3\n cancelDuration: 2\n heartbeatDelay: 5\n heartbeatDuration: 5\n storeId: \n storeName: \n supportEmail: \n supportPhone:\n\nccpay:\n url: https://api.paymentgateway.com/v1/payments\n apiKey: api-key\n merchantId: merchant-id\n currency: USD\n timeout: 30\n callbackUrl: https://wfc-gateway:${GATEWAY_SERVER_PORT:8080}/payment/callback ' , ' b0faa0a3681bb0e769d4e41337727eef ' , ' 2024-12-31 09:57:10 ' , ' 2024-12-31 09:57:11 ' , NULL , ' 172.20.0.1 ' , ' U ' , ' wfc-prod ' , ' ' ) ;
INSERT INTO ` his_config_info ` VALUES ( 0 , 208 , ' application-pub.yml ' , ' DEFAULT_GROUP ' , ' ' , ' spring:\n autoconfigure:\n exclude: com.alibaba.druid.spring.boot.autoconfigure.DruidDataSourceAutoConfigure\n mvc:\n pathmatch:\n matching-strategy: ant_path_matcher\n # 资源信息\n messages:\n # 国际化资源文件路径\n basename: i18n/messages\n \n# feign 配置\nfeign:\n sentinel:\n enabled: true\n okhttp:\n enabled: false\n httpclient:\n enabled: true\n disable-ssl-validation: true\n client:\n config:\n default:\n connectTimeout: 60000\n readTimeout: 60000\n compression:\n request:\n enabled: true\n min-request-size: 8192\n response:\n enabled: true\n\n# 暴露监控端点\nmanagement:\n endpoints:\n web:\n exposure:\n include: \ ' * \ ' \n ' , ' 0e6382041af033b46a7a78463ab519d5 ' , ' 2024-12-31 10:56:51 ' , ' 2024-12-31 10:56:52 ' , NULL , ' 172.20.0.1 ' , ' I ' , ' ' , ' ' ) ;
INSERT INTO ` his_config_info ` VALUES ( 0 , 209 , ' wfc-gateway-pub.yml ' , ' DEFAULT_GROUP ' , ' ' , ' spring:\n redis:\n host: wfc-redis\n port: 6379\n password:\n cloud:\n gateway:\n discovery:\n locator:\n lowerCaseServiceId: true\n enabled: true\n routes:\n # 认证中心\n - id: wfc-auth\n uri: lb://wfc-auth\n predicates:\n - Path=/auth/**\n filters:\n # 验证码处理\n - CacheRequestFilter\n - ValidateCodeFilter\n - StripPrefix=1\n # 代码生成\n - id: wfc-gen\n uri: lb://wfc-gen\n predicates:\n - Path=/code/**\n filters:\n - StripPrefix=1\n # 定时任务\n - id: wfc-job\n uri: lb://wfc-job\n predicates:\n - Path=/schedule/**\n filters:\n - StripPrefix=1\n # 系统模块\n - id: wfc-system\n uri: lb://wfc-system\n predicates:\n - Path=/system/**\n filters:\n - StripPrefix=1\n # 用户模块\n - id: wfc-user\n uri: lb://wfc-user\n predicates:\n - Path=/u/**\n filters:\n - StripPrefix=1 \n # 文件服务\n - id: wfc-file\n uri: lb://wfc-file\n predicates:\n - Path=/file/**\n filters:\n - StripPrefix=1\n # payment\n - id: wfc-payment\n uri: lb://wfc-payment\n predicates:\n - Path=/payment/**\n filters:\n - StripPrefix=1 \n\n# 安全配置\nsecurity:\n # 验证码\n captcha:\n enabled: true\n type: math\n # 防止XSS攻击\n xss:\n enabled: true\n excludeUrls:\n - /system/notice\n # 不校验白名单\n ignore:\n whites:\n - /auth/logout\n - /auth/login\n - /auth/register\n - /*/v2/api-docs\n - /csrf\n ' , ' 50c8bf5bbc07402c51b4d696ddb64a89 ' , ' 2024-12-31 10:56:51 ' , ' 2024-12-31 10:56:52 ' , NULL , ' 172.20.0.1 ' , ' I ' , ' ' , ' ' ) ;
INSERT INTO ` his_config_info ` VALUES ( 0 , 210 , ' wfc-auth-pub.yml ' , ' DEFAULT_GROUP ' , ' ' , ' spring:\n redis:\n host: wfc-redis\n port: 6379\n password:\n ' , ' c3f5481240e7581cc397f5c7918fd785 ' , ' 2024-12-31 10:56:51 ' , ' 2024-12-31 10:56:52 ' , NULL , ' 172.20.0.1 ' , ' I ' , ' ' , ' ' ) ;
INSERT INTO ` his_config_info ` VALUES ( 0 , 211 , ' wfc-monitor-pub.yml ' , ' DEFAULT_GROUP ' , ' ' , ' # spring\nspring:\n security:\n user:\n name: wfc\n password: 123456\n boot:\n admin:\n ui:\n title: visual monitor\n ' , ' c8f896d284d5328aab16baeb81a3685c ' , ' 2024-12-31 10:56:51 ' , ' 2024-12-31 10:56:52 ' , NULL , ' 172.20.0.1 ' , ' I ' , ' ' , ' ' ) ;
INSERT INTO ` his_config_info ` VALUES ( 0 , 212 , ' wfc-system-pub.yml ' , ' DEFAULT_GROUP ' , ' ' , ' # spring配置\nspring:\n redis:\n host: wfc-redis\n port: 6379\n password:\n datasource:\n druid:\n stat-view-servlet:\n enabled: true\n loginUsername: admin\n loginPassword: 123456\n dynamic:\n druid:\n initial-size: 5\n min-idle: 5\n maxActive: 20\n maxWait: 60000\n connectTimeout: 30000\n socketTimeout: 60000\n timeBetweenEvictionRunsMillis: 60000\n minEvictableIdleTimeMillis: 300000\n validationQuery: SELECT 1 FROM DUAL\n testWhileIdle: true\n testOnBorrow: false\n testOnReturn: false\n poolPreparedStatements: true\n maxPoolPreparedStatementPerConnectionSize: 20\n filters: stat,slf4j\n connectionProperties: druid.stat.mergeSql\\=true;druid.stat.slowSqlMillis\\=5000\n datasource:\n # 主库数据源\n master:\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: jdbc:mysql://wfc-mysql:3306/wfc_system_db?useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=GMT%2B8\n username: root\n password: 123456\n # 从库数据源\n # slave:\n # username: \n # password: \n # url: \n # driver-class-name: \n\n# mybatis配置\nmybatis:\n # 搜索指定包别名\n typeAliasesPackage: org.wfc.system\n # 配置mapper的扫描, 找到所有的mapper.xml映射文件\n mapperLocations: classpath:mapper/**/*.xml\n\n# swagger配置\nswagger:\n title: 系统模块接口文档\n license: Powered By wfc\n licenseUrl: https://wfc.vip ' , ' a355587121f711511c9010a4a8c0d797 ' , ' 2024-12-31 10:56:51 ' , ' 2024-12-31 10:56:52 ' , NULL , ' 172.20.0.1 ' , ' I ' , ' ' , ' ' ) ;
INSERT INTO ` his_config_info ` VALUES ( 0 , 213 , ' wfc-gen-pub.yml ' , ' DEFAULT_GROUP ' , ' ' , ' # spring配置\nspring:\n redis:\n host: wfc-redis\n port: 6379\n password:\n datasource:\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: jdbc:mysql://wfc-mysql:3306/wfc_system_db?useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=GMT%2B8\n username: root\n password: 123456\n\n# mybatis配置\nmybatis:\n # 搜索指定包别名\n typeAliasesPackage: org.wfc.gen.domain\n # 配置mapper的扫描, 找到所有的mapper.xml映射文件\n mapperLocations: classpath:mapper/**/*.xml\n\n# swagger配置\nswagger:\n title: 代码生成接口文档\n license: Powered By wfc\n licenseUrl: https://wfc.vip\n\n# 代码生成\ngen:\n # 作者\n author: wfc\n # 默认生成包路径 system 需改成自己的模块名称 如 system monitor tool\n packageName: org.wfc.system\n # 自动去除表前缀, 默认是false\n autoRemovePre: false\n # 表前缀(生成类名不会包含表前缀,多个用逗号分隔)\n tablePrefix: sys_\n ' , ' 5ec7d9b8eb46eca656316e5f817aadb2 ' , ' 2024-12-31 10:56:51 ' , ' 2024-12-31 10:56:52 ' , NULL , ' 172.20.0.1 ' , ' I ' , ' ' , ' ' ) ;
INSERT INTO ` his_config_info ` VALUES ( 0 , 214 , ' wfc-job-pub.yml ' , ' DEFAULT_GROUP ' , ' ' , ' # spring配置\nspring:\n redis:\n host: wfc-redis\n port: 6379\n password: \n datasource:\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: jdbc:mysql://wfc-mysql:3306/wfc_system_db?useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=GMT%2B8\n username: root\n password: 123456\n\n# mybatis配置\nmybatis:\n # 搜索指定包别名\n typeAliasesPackage: org.wfc.job.domain\n # 配置mapper的扫描, 找到所有的mapper.xml映射文件\n mapperLocations: classpath:mapper/**/*.xml\n\n# swagger配置\nswagger:\n title: 定时任务接口文档\n license: Powered By wfc\n licenseUrl: https://wfc.vip\n ' , ' 1376deec876c0878df743b4d96c7f125 ' , ' 2024-12-31 10:56:51 ' , ' 2024-12-31 10:56:52 ' , NULL , ' 172.20.0.1 ' , ' I ' , ' ' , ' ' ) ;
INSERT INTO ` his_config_info ` VALUES ( 0 , 215 , ' wfc-file-pub.yml ' , ' DEFAULT_GROUP ' , ' ' , ' # 本地文件上传 \nfile:\n domain: http://127.0.0.1:9300\n path: /home/wfc/upload\n prefix: /statics\n\n# FastDFS配置\nfdfs:\n domain: http://8.129.231.12\n soTimeout: 3000\n connectTimeout: 2000\n trackerList: 8.129.231.12:22122\n\n# Minio配置\nminio:\n url: http://8.129.231.12:9000\n accessKey: minioadmin\n secretKey: minioadmin\n bucketName: test ' , ' 580197933f0f0b2ba468a0916b911d4b ' , ' 2024-12-31 10:56:51 ' , ' 2024-12-31 10:56:52 ' , NULL , ' 172.20.0.1 ' , ' I ' , ' ' , ' ' ) ;
INSERT INTO ` his_config_info ` VALUES ( 0 , 216 , ' wfc-user-pub.yml ' , ' DEFAULT_GROUP ' , ' ' , ' # spring配置\nspring:\n redis:\n host: wfc-redis\n port: 6379\n password:\n datasource:\n druid:\n stat-view-servlet:\n enabled: true\n loginUsername: admin\n loginPassword: 123456\n dynamic:\n druid:\n initial-size: 5\n min-idle: 5\n maxActive: 20\n maxWait: 60000\n connectTimeout: 30000\n socketTimeout: 60000\n timeBetweenEvictionRunsMillis: 60000\n minEvictableIdleTimeMillis: 300000\n validationQuery: SELECT 1 FROM DUAL\n testWhileIdle: true\n testOnBorrow: false\n testOnReturn: false\n poolPreparedStatements: true\n maxPoolPreparedStatementPerConnectionSize: 20\n filters: stat,slf4j\n connectionProperties: druid.stat.mergeSql\\=true;druid.stat.slowSqlMillis\\=5000\n datasource:\n # 主库数据源\n master:\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: jdbc:mysql://wfc-mysql:3306/wfc_user_db?useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=GMT%2B8\n username: root\n password: 123456\n # 从库数据源\n # slave:\n # username:\n # password:\n # url:\n # driver-class-name:\n\n# mybatis配置\nmybatis:\n # 搜索指定包别名\n typeAliasesPackage: org.wfc.user\n # 配置mapper的扫描, 找到所有的mapper.xml映射文件\n mapperLocations: classpath:mapper/**/*.xml\n\n# swagger配置\nswagger:\n title: 系统模块接口文档\n license: Powered By wfc\n licenseUrl: https://wfc.vip ' , ' db8c5a7eeebb0d57d180d1a97ad6226e ' , ' 2024-12-31 10:56:51 ' , ' 2024-12-31 10:56:52 ' , NULL , ' 172.20.0.1 ' , ' I ' , ' ' , ' ' ) ;
INSERT INTO ` his_config_info ` VALUES ( 0 , 217 , ' wfc-payment-pub.yml ' , ' DEFAULT_GROUP ' , ' ' , ' # spring配置\nspring:\n main:\n allow-bean-definition-overriding: true\n \n redis:\n host: wfc-redis\n port: 6379\n password:\n datasource:\n druid:\n stat-view-servlet:\n enabled: true\n loginUsername: admin\n loginPassword: 123456\n dynamic:\n druid:\n initial-size: 5\n min-idle: 5\n maxActive: 20\n maxWait: 60000\n connectTimeout: 30000\n socketTimeout: 60000\n timeBetweenEvictionRunsMillis: 60000\n minEvictableIdleTimeMillis: 300000\n validationQuery: SELECT 1 FROM DUAL\n testWhileIdle: true\n testOnBorrow: false\n testOnReturn: false\n poolPreparedStatements: true\n maxPoolPreparedStatementPerConnectionSize: 20\n filters: stat,slf4j\n connectionProperties: druid.stat.mergeSql\\=true;druid.stat.slowSqlMillis\\=5000\n datasource:\n # 主库数据源\n master:\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: jdbc:mysql://wfc-mysql:3306/wfc_user_db?useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=GMT%2B8\n username: root\n password: 123456\n # 从库数据源\n # slave:\n # username:\n # password:\n # url:\n # driver-class-name:\n\n# mybatis-plus配置\nmybatis-plus:\n # 搜索指定包别名\n type-aliases-package: org.wfc.system\n # 配置mapper的扫描, 找到所有的mapper.xml映射文件\n mapper-locations: classpath:mapper/**/*.xml\n global-config:\n db-config:\n logic-delete-field: del_flag\n logic-delete-value: 1\n logic-not-delete-value: 0\n\n# swagger配置\nswagger:\n title: 系统模块接口文档\n license: Powered By wfc\n licenseUrl: https://wfc.vip\n\nlogging:\n level:\n root: debug\n org:\n springframework:\n web: debug\n mybatis:\n mapper: debug\n wfc:\n system: debug\n com:\n github:\n binarywang: debug\n file:\n name: /var/log/wfc/wfc-modules-payment.log\n\nwxpay:\n appId: 121412414112\n mchId: 1131412414\n mchKey: 1525342aa\n subAppId: #服务商模式下的子商户公众账号ID\n subMchId: #服务商模式下的子商户号 \n keyPath: /home/wfc/config/payment/wxpay_key.pem\n useSandboxEnv: false\n ' , ' 782c7fb3b169abae667b19cd08b96df8 ' , ' 2024-12-31 10:56:51 ' , ' 2024-12-31 10:56:52 ' , NULL , ' 172.20.0.1 ' , ' I ' , ' ' , ' ' ) ;
INSERT INTO ` his_config_info ` VALUES ( 60 , 218 , ' application.yml ' , ' DEFAULT_GROUP ' , ' ' , ' spring:\n autoconfigure:\n exclude: com.alibaba.druid.spring.boot.autoconfigure.DruidDataSourceAutoConfigure\n mvc:\n pathmatch:\n matching-strategy: ant_path_matcher\n # 资源信息\n messages:\n # 国际化资源文件路径\n basename: i18n/messages\n \n# feign 配置\nfeign:\n sentinel:\n enabled: true\n okhttp:\n enabled: false\n httpclient:\n enabled: true\n disable-ssl-validation: true\n client:\n config:\n default:\n connectTimeout: 60000\n readTimeout: 60000\n compression:\n request:\n enabled: true\n min-request-size: 8192\n response:\n enabled: true\n\n# 暴露监控端点\nmanagement:\n endpoints:\n web:\n exposure:\n include: \ ' * \ ' \n ' , ' 0e6382041af033b46a7a78463ab519d5 ' , ' 2024-12-31 10:56:57 ' , ' 2024-12-31 10:56:58 ' , NULL , ' 172.20.0.1 ' , ' D ' , ' ' , ' ' ) ;
INSERT INTO ` his_config_info ` VALUES ( 61 , 219 , ' wfc-gateway.yml ' , ' DEFAULT_GROUP ' , ' ' , ' spring:\n redis:\n host: wfc-redis\n port: 6379\n password:\n cloud:\n gateway:\n discovery:\n locator:\n lowerCaseServiceId: true\n enabled: true\n routes:\n # 认证中心\n - id: wfc-auth\n uri: lb://wfc-auth\n predicates:\n - Path=/auth/**\n filters:\n # 验证码处理\n - CacheRequestFilter\n - ValidateCodeFilter\n - StripPrefix=1\n # 代码生成\n - id: wfc-gen\n uri: lb://wfc-gen\n predicates:\n - Path=/code/**\n filters:\n - StripPrefix=1\n # 定时任务\n - id: wfc-job\n uri: lb://wfc-job\n predicates:\n - Path=/schedule/**\n filters:\n - StripPrefix=1\n # 系统模块\n - id: wfc-system\n uri: lb://wfc-system\n predicates:\n - Path=/system/**\n filters:\n - StripPrefix=1\n # 用户模块\n - id: wfc-user\n uri: lb://wfc-user\n predicates:\n - Path=/u/**\n filters:\n - StripPrefix=1 \n # 文件服务\n - id: wfc-file\n uri: lb://wfc-file\n predicates:\n - Path=/file/**\n filters:\n - StripPrefix=1\n # payment\n - id: wfc-payment\n uri: lb://wfc-payment\n predicates:\n - Path=/payment/**\n filters:\n - StripPrefix=1 \n\n# 安全配置\nsecurity:\n # 验证码\n captcha:\n enabled: true\n type: math\n # 防止XSS攻击\n xss:\n enabled: true\n excludeUrls:\n - /system/notice\n # 不校验白名单\n ignore:\n whites:\n - /auth/logout\n - /auth/login\n - /auth/register\n - /*/v2/api-docs\n - /csrf\n ' , ' 50c8bf5bbc07402c51b4d696ddb64a89 ' , ' 2024-12-31 10:56:57 ' , ' 2024-12-31 10:56:58 ' , NULL , ' 172.20.0.1 ' , ' D ' , ' ' , ' ' ) ;
INSERT INTO ` his_config_info ` VALUES ( 62 , 220 , ' wfc-auth.yml ' , ' DEFAULT_GROUP ' , ' ' , ' spring:\n redis:\n host: wfc-redis\n port: 6379\n password:\n ' , ' c3f5481240e7581cc397f5c7918fd785 ' , ' 2024-12-31 10:56:57 ' , ' 2024-12-31 10:56:58 ' , NULL , ' 172.20.0.1 ' , ' D ' , ' ' , ' ' ) ;
INSERT INTO ` his_config_info ` VALUES ( 63 , 221 , ' wfc-monitor.yml ' , ' DEFAULT_GROUP ' , ' ' , ' # spring\nspring:\n security:\n user:\n name: wfc\n password: 123456\n boot:\n admin:\n ui:\n title: visual monitor\n ' , ' c8f896d284d5328aab16baeb81a3685c ' , ' 2024-12-31 10:56:57 ' , ' 2024-12-31 10:56:58 ' , NULL , ' 172.20.0.1 ' , ' D ' , ' ' , ' ' ) ;
INSERT INTO ` his_config_info ` VALUES ( 64 , 222 , ' wfc-system.yml ' , ' DEFAULT_GROUP ' , ' ' , ' # spring配置\nspring:\n redis:\n host: wfc-redis\n port: 6379\n password:\n datasource:\n druid:\n stat-view-servlet:\n enabled: true\n loginUsername: admin\n loginPassword: 123456\n dynamic:\n druid:\n initial-size: 5\n min-idle: 5\n maxActive: 20\n maxWait: 60000\n connectTimeout: 30000\n socketTimeout: 60000\n timeBetweenEvictionRunsMillis: 60000\n minEvictableIdleTimeMillis: 300000\n validationQuery: SELECT 1 FROM DUAL\n testWhileIdle: true\n testOnBorrow: false\n testOnReturn: false\n poolPreparedStatements: true\n maxPoolPreparedStatementPerConnectionSize: 20\n filters: stat,slf4j\n connectionProperties: druid.stat.mergeSql\\=true;druid.stat.slowSqlMillis\\=5000\n datasource:\n # 主库数据源\n master:\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: jdbc:mysql://wfc-mysql:3306/wfc_system_db?useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=GMT%2B8\n username: root\n password: 123456\n # 从库数据源\n # slave:\n # username: \n # password: \n # url: \n # driver-class-name: \n\n# mybatis配置\nmybatis:\n # 搜索指定包别名\n typeAliasesPackage: org.wfc.system\n # 配置mapper的扫描, 找到所有的mapper.xml映射文件\n mapperLocations: classpath:mapper/**/*.xml\n\n# swagger配置\nswagger:\n title: 系统模块接口文档\n license: Powered By wfc\n licenseUrl: https://wfc.vip ' , ' a355587121f711511c9010a4a8c0d797 ' , ' 2024-12-31 10:56:57 ' , ' 2024-12-31 10:56:58 ' , NULL , ' 172.20.0.1 ' , ' D ' , ' ' , ' ' ) ;
INSERT INTO ` his_config_info ` VALUES ( 65 , 223 , ' wfc-gen.yml ' , ' DEFAULT_GROUP ' , ' ' , ' # spring配置\nspring:\n redis:\n host: wfc-redis\n port: 6379\n password:\n datasource:\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: jdbc:mysql://wfc-mysql:3306/wfc_system_db?useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=GMT%2B8\n username: root\n password: 123456\n\n# mybatis配置\nmybatis:\n # 搜索指定包别名\n typeAliasesPackage: org.wfc.gen.domain\n # 配置mapper的扫描, 找到所有的mapper.xml映射文件\n mapperLocations: classpath:mapper/**/*.xml\n\n# swagger配置\nswagger:\n title: 代码生成接口文档\n license: Powered By wfc\n licenseUrl: https://wfc.vip\n\n# 代码生成\ngen:\n # 作者\n author: wfc\n # 默认生成包路径 system 需改成自己的模块名称 如 system monitor tool\n packageName: org.wfc.system\n # 自动去除表前缀, 默认是false\n autoRemovePre: false\n # 表前缀(生成类名不会包含表前缀,多个用逗号分隔)\n tablePrefix: sys_\n ' , ' 5ec7d9b8eb46eca656316e5f817aadb2 ' , ' 2024-12-31 10:56:57 ' , ' 2024-12-31 10:56:58 ' , NULL , ' 172.20.0.1 ' , ' D ' , ' ' , ' ' ) ;
INSERT INTO ` his_config_info ` VALUES ( 66 , 224 , ' wfc-job.yml ' , ' DEFAULT_GROUP ' , ' ' , ' # spring配置\nspring:\n redis:\n host: wfc-redis\n port: 6379\n password: \n datasource:\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: jdbc:mysql://wfc-mysql:3306/wfc_system_db?useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=GMT%2B8\n username: root\n password: 123456\n\n# mybatis配置\nmybatis:\n # 搜索指定包别名\n typeAliasesPackage: org.wfc.job.domain\n # 配置mapper的扫描, 找到所有的mapper.xml映射文件\n mapperLocations: classpath:mapper/**/*.xml\n\n# swagger配置\nswagger:\n title: 定时任务接口文档\n license: Powered By wfc\n licenseUrl: https://wfc.vip\n ' , ' 1376deec876c0878df743b4d96c7f125 ' , ' 2024-12-31 10:56:57 ' , ' 2024-12-31 10:56:58 ' , NULL , ' 172.20.0.1 ' , ' D ' , ' ' , ' ' ) ;
INSERT INTO ` his_config_info ` VALUES ( 67 , 225 , ' wfc-file.yml ' , ' DEFAULT_GROUP ' , ' ' , ' # 本地文件上传 \nfile:\n domain: http://127.0.0.1:9300\n path: /home/wfc/upload\n prefix: /statics\n\n# FastDFS配置\nfdfs:\n domain: http://8.129.231.12\n soTimeout: 3000\n connectTimeout: 2000\n trackerList: 8.129.231.12:22122\n\n# Minio配置\nminio:\n url: http://8.129.231.12:9000\n accessKey: minioadmin\n secretKey: minioadmin\n bucketName: test ' , ' 580197933f0f0b2ba468a0916b911d4b ' , ' 2024-12-31 10:56:57 ' , ' 2024-12-31 10:56:58 ' , NULL , ' 172.20.0.1 ' , ' D ' , ' ' , ' ' ) ;
INSERT INTO ` his_config_info ` VALUES ( 69 , 226 , ' wfc-user.yml ' , ' DEFAULT_GROUP ' , ' ' , ' # spring配置\nspring:\n redis:\n host: wfc-redis\n port: 6379\n password:\n datasource:\n druid:\n stat-view-servlet:\n enabled: true\n loginUsername: admin\n loginPassword: 123456\n dynamic:\n druid:\n initial-size: 5\n min-idle: 5\n maxActive: 20\n maxWait: 60000\n connectTimeout: 30000\n socketTimeout: 60000\n timeBetweenEvictionRunsMillis: 60000\n minEvictableIdleTimeMillis: 300000\n validationQuery: SELECT 1 FROM DUAL\n testWhileIdle: true\n testOnBorrow: false\n testOnReturn: false\n poolPreparedStatements: true\n maxPoolPreparedStatementPerConnectionSize: 20\n filters: stat,slf4j\n connectionProperties: druid.stat.mergeSql\\=true;druid.stat.slowSqlMillis\\=5000\n datasource:\n # 主库数据源\n master:\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: jdbc:mysql://wfc-mysql:3306/wfc_user_db?useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=GMT%2B8\n username: root\n password: 123456\n # 从库数据源\n # slave:\n # username:\n # password:\n # url:\n # driver-class-name:\n\n# mybatis配置\nmybatis:\n # 搜索指定包别名\n typeAliasesPackage: org.wfc.user\n # 配置mapper的扫描, 找到所有的mapper.xml映射文件\n mapperLocations: classpath:mapper/**/*.xml\n\n# swagger配置\nswagger:\n title: 系统模块接口文档\n license: Powered By wfc\n licenseUrl: https://wfc.vip ' , ' db8c5a7eeebb0d57d180d1a97ad6226e ' , ' 2024-12-31 10:56:57 ' , ' 2024-12-31 10:56:58 ' , NULL , ' 172.20.0.1 ' , ' D ' , ' ' , ' ' ) ;
INSERT INTO ` his_config_info ` VALUES ( 70 , 227 , ' wfc-payment.yml ' , ' DEFAULT_GROUP ' , ' ' , ' # spring配置\nspring:\n main:\n allow-bean-definition-overriding: true\n \n redis:\n host: wfc-redis\n port: 6379\n password:\n datasource:\n druid:\n stat-view-servlet:\n enabled: true\n loginUsername: admin\n loginPassword: 123456\n dynamic:\n druid:\n initial-size: 5\n min-idle: 5\n maxActive: 20\n maxWait: 60000\n connectTimeout: 30000\n socketTimeout: 60000\n timeBetweenEvictionRunsMillis: 60000\n minEvictableIdleTimeMillis: 300000\n validationQuery: SELECT 1 FROM DUAL\n testWhileIdle: true\n testOnBorrow: false\n testOnReturn: false\n poolPreparedStatements: true\n maxPoolPreparedStatementPerConnectionSize: 20\n filters: stat,slf4j\n connectionProperties: druid.stat.mergeSql\\=true;druid.stat.slowSqlMillis\\=5000\n datasource:\n # 主库数据源\n master:\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: jdbc:mysql://wfc-mysql:3306/wfc_user_db?useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=GMT%2B8\n username: root\n password: 123456\n # 从库数据源\n # slave:\n # username:\n # password:\n # url:\n # driver-class-name:\n\n# mybatis-plus配置\nmybatis-plus:\n # 搜索指定包别名\n type-aliases-package: org.wfc.system\n # 配置mapper的扫描, 找到所有的mapper.xml映射文件\n mapper-locations: classpath:mapper/**/*.xml\n global-config:\n db-config:\n logic-delete-field: del_flag\n logic-delete-value: 1\n logic-not-delete-value: 0\n\n# swagger配置\nswagger:\n title: 系统模块接口文档\n license: Powered By wfc\n licenseUrl: https://wfc.vip\n\nlogging:\n level:\n root: debug\n org:\n springframework:\n web: debug\n mybatis:\n mapper: debug\n wfc:\n system: debug\n com:\n github:\n binarywang: debug\n file:\n name: /var/log/wfc/wfc-modules-payment.log\n\nwxpay:\n appId: 121412414112\n mchId: 1131412414\n mchKey: 1525342aa\n subAppId: #服务商模式下的子商户公众账号ID\n subMchId: #服务商模式下的子商户号 \n keyPath: /home/wfc/config/payment/wxpay_key.pem\n useSandboxEnv: false\n ' , ' 782c7fb3b169abae667b19cd08b96df8 ' , ' 2024-12-31 10:56:57 ' , ' 2024-12-31 10:56:58 ' , NULL , ' 172.20.0.1 ' , ' D ' , ' ' , ' ' ) ;
INSERT INTO ` his_config_info ` VALUES ( 0 , 228 , ' sentinel-wfc-gateway-pub ' , ' DEFAULT_GROUP ' , ' ' , ' [\r\n {\r\n \"resource\": \"wfc-auth\",\r\n \"count\": 500,\r\n \"grade\": 1,\r\n \"limitApp\": \"default\",\r\n \"strategy\": 0,\r\n \"controlBehavior\": 0\r\n },\r\n {\r\n \"resource\": \"wfc-system\",\r\n \"count\": 1000,\r\n \"grade\": 1,\r\n \"limitApp\": \"default\",\r\n \"strategy\": 0,\r\n \"controlBehavior\": 0\r\n },\r\n {\r\n \"resource\": \"wfc-gen\",\r\n \"count\": 200,\r\n \"grade\": 1,\r\n \"limitApp\": \"default\",\r\n \"strategy\": 0,\r\n \"controlBehavior\": 0\r\n },\r\n {\r\n \"resource\": \"wfc-job\",\r\n \"count\": 300,\r\n \"grade\": 1,\r\n \"limitApp\": \"default\",\r\n \"strategy\": 0,\r\n \"controlBehavior\": 0\r\n }\r\n] ' , ' a8b3ec396dd09d5f2ba494cc80a7afa0 ' , ' 2024-12-31 10:57:17 ' , ' 2024-12-31 10:57:17 ' , NULL , ' 172.20.0.1 ' , ' I ' , ' ' , ' ' ) ;
INSERT INTO ` his_config_info ` VALUES ( 75 , 229 , ' sentinel-wfc-gateway ' , ' DEFAULT_GROUP ' , ' ' , ' [\r\n {\r\n \"resource\": \"wfc-auth\",\r\n \"count\": 500,\r\n \"grade\": 1,\r\n \"limitApp\": \"default\",\r\n \"strategy\": 0,\r\n \"controlBehavior\": 0\r\n },\r\n {\r\n \"resource\": \"wfc-system\",\r\n \"count\": 1000,\r\n \"grade\": 1,\r\n \"limitApp\": \"default\",\r\n \"strategy\": 0,\r\n \"controlBehavior\": 0\r\n },\r\n {\r\n \"resource\": \"wfc-gen\",\r\n \"count\": 200,\r\n \"grade\": 1,\r\n \"limitApp\": \"default\",\r\n \"strategy\": 0,\r\n \"controlBehavior\": 0\r\n },\r\n {\r\n \"resource\": \"wfc-job\",\r\n \"count\": 300,\r\n \"grade\": 1,\r\n \"limitApp\": \"default\",\r\n \"strategy\": 0,\r\n \"controlBehavior\": 0\r\n }\r\n] ' , ' a8b3ec396dd09d5f2ba494cc80a7afa0 ' , ' 2024-12-31 10:57:21 ' , ' 2024-12-31 10:57:22 ' , NULL , ' 172.20.0.1 ' , ' D ' , ' ' , ' ' ) ;
INSERT INTO ` his_config_info ` VALUES ( 0 , 230 , ' wfc-payment-pub.yml ' , ' DEFAULT_GROUP ' , ' ' , ' # spring配置\nspring:\n main:\n allow-bean-definition-overriding: true\n \n redis:\n host: wfc-redis\n port: 6379\n password:\n datasource:\n druid:\n stat-view-servlet:\n enabled: true\n loginUsername: admin\n loginPassword: 123456\n dynamic:\n druid:\n initial-size: 5\n min-idle: 5\n maxActive: 20\n maxWait: 60000\n connectTimeout: 30000\n socketTimeout: 60000\n timeBetweenEvictionRunsMillis: 60000\n minEvictableIdleTimeMillis: 300000\n validationQuery: SELECT 1 FROM DUAL\n testWhileIdle: true\n testOnBorrow: false\n testOnReturn: false\n poolPreparedStatements: true\n maxPoolPreparedStatementPerConnectionSize: 20\n filters: stat,slf4j\n connectionProperties: druid.stat.mergeSql\\=true;druid.stat.slowSqlMillis\\=5000\n datasource:\n # 主库数据源\n master:\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: jdbc:mysql://wfc-mysql:3306/wfc_user_db?useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=GMT%2B8\n username: root\n password: 123456\n # 从库数据源\n # slave:\n # username:\n # password:\n # url:\n # driver-class-name:\n\n# mybatis-plus配置\nmybatis-plus:\n # 搜索指定包别名\n type-aliases-package: org.wfc.system\n # 配置mapper的扫描, 找到所有的mapper.xml映射文件\n mapper-locations: classpath:mapper/**/*.xml\n global-config:\n db-config:\n logic-delete-field: del_flag\n logic-delete-value: 1\n logic-not-delete-value: 0\n\n# swagger配置\nswagger:\n title: 系统模块接口文档\n license: Powered By wfc\n licenseUrl: https://wfc.vip\n\nlogging:\n level:\n root: debug\n org:\n springframework:\n web: debug\n mybatis:\n mapper: debug\n wfc:\n system: debug\n com:\n github:\n binarywang: debug\n file:\n name: /var/log/wfc/wfc-modules-payment.log\n\nwxpay:\n appId: 121412414112\n mchId: 1131412414\n mchKey: 1525342aa\n subAppId: #服务商模式下的子商户公众账号ID\n subMchId: #服务商模式下的子商户号 \n keyPath: /home/wfc/config/payment/wxpay_key.pem\n useSandboxEnv: false\n ' , ' 782c7fb3b169abae667b19cd08b96df8 ' , ' 2024-12-31 10:58:47 ' , ' 2024-12-31 10:58:48 ' , NULL , ' 172.20.0.1 ' , ' I ' , ' wfc-dev ' , ' ' ) ;
INSERT INTO ` his_config_info ` VALUES ( 56 , 231 , ' wfc-payment-dev.yml ' , ' DEFAULT_GROUP ' , ' ' , ' # spring配置\nspring:\n main:\n allow-bean-definition-overriding: true\n \n redis:\n host: wfc-redis\n port: 6379\n password:\n datasource:\n druid:\n stat-view-servlet:\n enabled: true\n loginUsername: admin\n loginPassword: 123456\n dynamic:\n druid:\n initial-size: 5\n min-idle: 5\n maxActive: 20\n maxWait: 60000\n connectTimeout: 30000\n socketTimeout: 60000\n timeBetweenEvictionRunsMillis: 60000\n minEvictableIdleTimeMillis: 300000\n validationQuery: SELECT 1 FROM DUAL\n testWhileIdle: true\n testOnBorrow: false\n testOnReturn: false\n poolPreparedStatements: true\n maxPoolPreparedStatementPerConnectionSize: 20\n filters: stat,slf4j\n connectionProperties: druid.stat.mergeSql\\=true;druid.stat.slowSqlMillis\\=5000\n datasource:\n # 主库数据源\n master:\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: jdbc:mysql://wfc-mysql:3306/wfc_user_db?useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=GMT%2B8\n username: root\n password: 123456\n # 从库数据源\n # slave:\n # username:\n # password:\n # url:\n # driver-class-name:\n\n# mybatis-plus配置\nmybatis-plus:\n # 搜索指定包别名\n type-aliases-package: org.wfc.system\n # 配置mapper的扫描, 找到所有的mapper.xml映射文件\n mapper-locations: classpath:mapper/**/*.xml\n global-config:\n db-config:\n logic-delete-field: del_flag\n logic-delete-value: 1\n logic-not-delete-value: 0\n\n# swagger配置\nswagger:\n title: 系统模块接口文档\n license: Powered By wfc\n licenseUrl: https://wfc.vip\n\nlogging:\n level:\n root: debug\n org:\n springframework:\n web: debug\n mybatis:\n mapper: debug\n wfc:\n system: debug\n com:\n github:\n binarywang: debug\n file:\n name: /var/log/wfc/wfc-modules-payment.log\n\nwxpay:\n appId: 121412414112\n mchId: 1131412414\n mchKey: 1525342aa\n subAppId: #服务商模式下的子商户公众账号ID\n subMchId: #服务商模式下的子商户号 \n keyPath: /home/wfc/config/payment/wxpay_key.pem\n useSandboxEnv: false\n ' , ' 782c7fb3b169abae667b19cd08b96df8 ' , ' 2024-12-31 10:58:51 ' , ' 2024-12-31 10:58:52 ' , NULL , ' 172.20.0.1 ' , ' D ' , ' wfc-dev ' , ' ' ) ;
INSERT INTO ` his_config_info ` VALUES ( 0 , 232 , ' wfc-payment-dev.yml ' , ' DEFAULT_GROUP ' , ' ' , ' # spring配置\nspring:\n main:\n allow-bean-definition-overriding: true\n \n redis:\n host: wfc-redis\n port: 6379\n password:\n datasource:\n druid:\n stat-view-servlet:\n enabled: true\n loginUsername: admin\n loginPassword: 123456\n dynamic:\n druid:\n initial-size: 5\n min-idle: 5\n maxActive: 20\n maxWait: 60000\n connectTimeout: 30000\n socketTimeout: 60000\n timeBetweenEvictionRunsMillis: 60000\n minEvictableIdleTimeMillis: 300000\n validationQuery: SELECT 1 FROM DUAL\n testWhileIdle: true\n testOnBorrow: false\n testOnReturn: false\n poolPreparedStatements: true\n maxPoolPreparedStatementPerConnectionSize: 20\n filters: stat,slf4j\n connectionProperties: druid.stat.mergeSql\\=true;druid.stat.slowSqlMillis\\=5000\n datasource:\n # 主库数据源\n master:\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: jdbc:mysql://wfc-mysql:3306/wfc_user_db?useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=GMT%2B8\n username: root\n password: 123456\n # 从库数据源\n # slave:\n # username:\n # password:\n # url:\n # driver-class-name:\n\n# mybatis-plus配置\nmybatis-plus:\n # 搜索指定包别名\n type-aliases-package: org.wfc.system\n # 配置mapper的扫描, 找到所有的mapper.xml映射文件\n mapper-locations: classpath:mapper/**/*.xml\n global-config:\n db-config:\n logic-delete-field: del_flag\n logic-delete-value: 1\n logic-not-delete-value: 0\n\n# swagger配置\nswagger:\n title: 系统模块接口文档\n license: Powered By wfc\n licenseUrl: https://wfc.vip\n\nlogging:\n level:\n root: debug\n org:\n springframework:\n web: debug\n mybatis:\n mapper: debug\n wfc:\n system: debug\n com:\n github:\n binarywang: debug\n file:\n name: /var/log/wfc/wfc-modules-payment.log\n\nwxpay:\n appId: 121412414112\n mchId: 1131412414\n mchKey: 1525342aa\n subAppId: #服务商模式下的子商户公众账号ID\n subMchId: #服务商模式下的子商户号 \n keyPath: /home/wfc/config/payment/wxpay_key.pem\n useSandboxEnv: false\n ' , ' 782c7fb3b169abae667b19cd08b96df8 ' , ' 2024-12-31 10:59:11 ' , ' 2024-12-31 10:59:12 ' , NULL , ' 172.20.0.1 ' , ' I ' , ' wfc-dev ' , ' ' ) ;
INSERT INTO ` his_config_info ` VALUES ( 0 , 233 , ' sentinel-wfc-gateway-pub ' , ' DEFAULT_GROUP ' , ' ' , ' [\r\n {\r\n \"resource\": \"wfc-auth\",\r\n \"count\": 500,\r\n \"grade\": 1,\r\n \"limitApp\": \"default\",\r\n \"strategy\": 0,\r\n \"controlBehavior\": 0\r\n },\r\n {\r\n \"resource\": \"wfc-system\",\r\n \"count\": 1000,\r\n \"grade\": 1,\r\n \"limitApp\": \"default\",\r\n \"strategy\": 0,\r\n \"controlBehavior\": 0\r\n },\r\n {\r\n \"resource\": \"wfc-gen\",\r\n \"count\": 200,\r\n \"grade\": 1,\r\n \"limitApp\": \"default\",\r\n \"strategy\": 0,\r\n \"controlBehavior\": 0\r\n },\r\n {\r\n \"resource\": \"wfc-job\",\r\n \"count\": 300,\r\n \"grade\": 1,\r\n \"limitApp\": \"default\",\r\n \"strategy\": 0,\r\n \"controlBehavior\": 0\r\n }\r\n] ' , ' a8b3ec396dd09d5f2ba494cc80a7afa0 ' , ' 2024-12-31 10:59:32 ' , ' 2024-12-31 10:59:32 ' , NULL , ' 172.20.0.1 ' , ' I ' , ' wfc-dev ' , ' ' ) ;
INSERT INTO ` his_config_info ` VALUES ( 73 , 234 , ' sentinel-wfc-gateway-dev ' , ' DEFAULT_GROUP ' , ' ' , ' [\r\n {\r\n \"resource\": \"wfc-auth\",\r\n \"count\": 500,\r\n \"grade\": 1,\r\n \"limitApp\": \"default\",\r\n \"strategy\": 0,\r\n \"controlBehavior\": 0\r\n },\r\n {\r\n \"resource\": \"wfc-system\",\r\n \"count\": 1000,\r\n \"grade\": 1,\r\n \"limitApp\": \"default\",\r\n \"strategy\": 0,\r\n \"controlBehavior\": 0\r\n },\r\n {\r\n \"resource\": \"wfc-gen\",\r\n \"count\": 200,\r\n \"grade\": 1,\r\n \"limitApp\": \"default\",\r\n \"strategy\": 0,\r\n \"controlBehavior\": 0\r\n },\r\n {\r\n \"resource\": \"wfc-job\",\r\n \"count\": 300,\r\n \"grade\": 1,\r\n \"limitApp\": \"default\",\r\n \"strategy\": 0,\r\n \"controlBehavior\": 0\r\n }\r\n] ' , ' a8b3ec396dd09d5f2ba494cc80a7afa0 ' , ' 2024-12-31 10:59:36 ' , ' 2024-12-31 10:59:37 ' , NULL , ' 172.20.0.1 ' , ' D ' , ' wfc-dev ' , ' ' ) ;
INSERT INTO ` his_config_info ` VALUES ( 87 , 235 , ' wfc-payment-pub.yml ' , ' DEFAULT_GROUP ' , ' ' , ' # spring配置\nspring:\n main:\n allow-bean-definition-overriding: true\n \n redis:\n host: wfc-redis\n port: 6379\n password:\n datasource:\n druid:\n stat-view-servlet:\n enabled: true\n loginUsername: admin\n loginPassword: 123456\n dynamic:\n druid:\n initial-size: 5\n min-idle: 5\n maxActive: 20\n maxWait: 60000\n connectTimeout: 30000\n socketTimeout: 60000\n timeBetweenEvictionRunsMillis: 60000\n minEvictableIdleTimeMillis: 300000\n validationQuery: SELECT 1 FROM DUAL\n testWhileIdle: true\n testOnBorrow: false\n testOnReturn: false\n poolPreparedStatements: true\n maxPoolPreparedStatementPerConnectionSize: 20\n filters: stat,slf4j\n connectionProperties: druid.stat.mergeSql\\=true;druid.stat.slowSqlMillis\\=5000\n datasource:\n # 主库数据源\n master:\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: jdbc:mysql://wfc-mysql:3306/wfc_user_db?useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=GMT%2B8\n username: root\n password: 123456\n # 从库数据源\n # slave:\n # username:\n # password:\n # url:\n # driver-class-name:\n\n# mybatis-plus配置\nmybatis-plus:\n # 搜索指定包别名\n type-aliases-package: org.wfc.system\n # 配置mapper的扫描, 找到所有的mapper.xml映射文件\n mapper-locations: classpath:mapper/**/*.xml\n global-config:\n db-config:\n logic-delete-field: del_flag\n logic-delete-value: 1\n logic-not-delete-value: 0\n\n# swagger配置\nswagger:\n title: 系统模块接口文档\n license: Powered By wfc\n licenseUrl: https://wfc.vip\n\nlogging:\n level:\n root: debug\n org:\n springframework:\n web: debug\n mybatis:\n mapper: debug\n wfc:\n system: debug\n com:\n github:\n binarywang: debug\n file:\n name: /var/log/wfc/wfc-modules-payment.log\n\nwxpay:\n appId: 121412414112\n mchId: 1131412414\n mchKey: 1525342aa\n subAppId: #服务商模式下的子商户公众账号ID\n subMchId: #服务商模式下的子商户号 \n keyPath: /home/wfc/config/payment/wxpay_key.pem\n useSandboxEnv: false\n ' , ' 782c7fb3b169abae667b19cd08b96df8 ' , ' 2024-12-31 11:00:09 ' , ' 2024-12-31 11:00:09 ' , NULL , ' 172.20.0.1 ' , ' D ' , ' wfc-dev ' , ' ' ) ;
INSERT INTO ` his_config_info ` VALUES ( 0 , 236 , ' sentinel-wfc-gateway-dev ' , ' DEFAULT_GROUP ' , ' ' , ' [\r\n {\r\n \"resource\": \"wfc-auth\",\r\n \"count\": 500,\r\n \"grade\": 1,\r\n \"limitApp\": \"default\",\r\n \"strategy\": 0,\r\n \"controlBehavior\": 0\r\n },\r\n {\r\n \"resource\": \"wfc-system\",\r\n \"count\": 1000,\r\n \"grade\": 1,\r\n \"limitApp\": \"default\",\r\n \"strategy\": 0,\r\n \"controlBehavior\": 0\r\n },\r\n {\r\n \"resource\": \"wfc-gen\",\r\n \"count\": 200,\r\n \"grade\": 1,\r\n \"limitApp\": \"default\",\r\n \"strategy\": 0,\r\n \"controlBehavior\": 0\r\n },\r\n {\r\n \"resource\": \"wfc-job\",\r\n \"count\": 300,\r\n \"grade\": 1,\r\n \"limitApp\": \"default\",\r\n \"strategy\": 0,\r\n \"controlBehavior\": 0\r\n }\r\n] ' , ' a8b3ec396dd09d5f2ba494cc80a7afa0 ' , ' 2024-12-31 11:00:42 ' , ' 2024-12-31 11:00:43 ' , NULL , ' 172.20.0.1 ' , ' I ' , ' wfc-dev ' , ' ' ) ;
INSERT INTO ` his_config_info ` VALUES ( 89 , 237 , ' sentinel-wfc-gateway-pub ' , ' DEFAULT_GROUP ' , ' ' , ' [\r\n {\r\n \"resource\": \"wfc-auth\",\r\n \"count\": 500,\r\n \"grade\": 1,\r\n \"limitApp\": \"default\",\r\n \"strategy\": 0,\r\n \"controlBehavior\": 0\r\n },\r\n {\r\n \"resource\": \"wfc-system\",\r\n \"count\": 1000,\r\n \"grade\": 1,\r\n \"limitApp\": \"default\",\r\n \"strategy\": 0,\r\n \"controlBehavior\": 0\r\n },\r\n {\r\n \"resource\": \"wfc-gen\",\r\n \"count\": 200,\r\n \"grade\": 1,\r\n \"limitApp\": \"default\",\r\n \"strategy\": 0,\r\n \"controlBehavior\": 0\r\n },\r\n {\r\n \"resource\": \"wfc-job\",\r\n \"count\": 300,\r\n \"grade\": 1,\r\n \"limitApp\": \"default\",\r\n \"strategy\": 0,\r\n \"controlBehavior\": 0\r\n }\r\n] ' , ' a8b3ec396dd09d5f2ba494cc80a7afa0 ' , ' 2024-12-31 11:00:48 ' , ' 2024-12-31 11:00:49 ' , NULL , ' 172.20.0.1 ' , ' D ' , ' wfc-dev ' , ' ' ) ;
INSERT INTO ` his_config_info ` VALUES ( 55 , 238 , ' wfc-payment-prod.yml ' , ' DEFAULT_GROUP ' , ' ' , ' # spring配置\nspring:\n application:\n name: wfc-payment\n cloud:\n nacos:\n discovery:\n server-addr: ${NACOS_SERVER_ADDR:wfc-nacos}:${NACOS_SERVER_PORT:8848}\n namespace: ${NACOS_NAMESPACE:wfc-prod}\n \n main:\n allow-bean-definition-overriding: true\n \n redis:\n host: wfc-redis\n port: 6379\n password:\n datasource:\n druid:\n stat-view-servlet:\n enabled: true\n loginUsername: admin\n loginPassword: 123456\n dynamic:\n druid:\n initial-size: 5\n min-idle: 5\n maxActive: 20\n maxWait: 60000\n connectTimeout: 30000\n socketTimeout: 60000\n timeBetweenEvictionRunsMillis: 60000\n minEvictableIdleTimeMillis: 300000\n validationQuery: SELECT 1 FROM DUAL\n testWhileIdle: true\n testOnBorrow: false\n testOnReturn: false\n poolPreparedStatements: true\n maxPoolPreparedStatementPerConnectionSize: 20\n filters: stat,slf4j\n connectionProperties: druid.stat.mergeSql\\=true;druid.stat.slowSqlMillis\\=5000\n datasource:\n # 主库数据源\n master:\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: jdbc:mysql://wfc-mysql:3306/wfc_user_db?useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=GMT%2B8\n username: root\n password: 123456\n # 从库数据源\n # slave:\n # username:\n # password:\n # url:\n # driver-class-name:\n\n# mybatis-plus配置\nmybatis-plus:\n # 搜索指定包别名\n type-aliases-package: org.wfc.system\n # 配置mapper的扫描, 找到所有的mapper.xml映射文件\n mapper-locations: classpath:mapper/**/*.xml\n global-config:\n db-config:\n logic-delete-field: del_flag\n logic-delete-value: 1\n logic-not-delete-value: 0\n\n# swagger配置\nswagger:\n title: 系统模块接口文档\n license: Powered By wfc\n licenseUrl: https://wfc.vip\n\nlogging:\n level:\n root: DEBUG\n org:\n springframework: DEBUG\n mybatis:\n mapper: DEBUG\n com:\n github:\n binarywang: DEBUG\n file:\n name: /opt/wfc/logs/wfc-payment.log\n\nwxpay:\n appId: 121412414112\n mchId: 1131412414\n mchKey: 1525342aa\n subAppId: #服务商模式下的子商户公众账号ID\n subMchId: #服务商模式下的子商户号 \n keyPath: /opt/wfc/conf/wxpay/wxpay_key.pem\n useSandboxEnv: true\n\nalipay:\n appId: 121412414112\n privateKey: 1131412414\n publicKey: 1525342aa\n notifyUrl: http://wfc-gateway:${GATEWAY_SERVER_PORT:8080}/alipay/notify\n returnUrl: http://wfc-gateway:${GATEWAY_SERVER_PORT:8080}/alipay/return\n signType: RSA2\n charset: utf-8\n gatewayUrl: https://openapi.alipaydev.com/gateway.do\n logPath: /opt/wfc/logs/alipay/alipay_log.txt\n maxQueryRetry: 5\n queryDuration: 5\n maxCancelRetry: 3\n cancelDuration: 2\n heartbeatDelay: 5\n heartbeatDuration: 5\n storeId: \n storeName: \n supportEmail: \n supportPhone:\n\nccpay:\n url: https://api.paymentgateway.com/v1/payments\n apiKey: api-key\n merchantId: merchant-id\n currency: USD\n timeout: 30\n callbackUrl: https://wfc-gateway:${GATEWAY_SERVER_PORT:8080}/payment/callback ' , ' 530cdf37d077d3a980fee08616f22940 ' , ' 2024-12-31 11:06:02 ' , ' 2024-12-31 11:06:03 ' , NULL , ' 172.20.0.1 ' , ' U ' , ' wfc-prod ' , ' ' ) ;
INSERT INTO ` his_config_info ` VALUES ( 55 , 239 , ' wfc-payment-prod.yml ' , ' DEFAULT_GROUP ' , ' ' , ' # spring配置\nspring:\n application:\n name: wfc-payment\n cloud:\n nacos:\n discovery:\n server-addr: ${NACOS_SERVER_ADDR:wfc-nacos}:${NACOS_SERVER_PORT:8848}\n namespace: ${NACOS_NAMESPACE:wfc-prod}\n \n main:\n allow-bean-definition-overriding: true\n \n redis:\n host: wfc-redis\n port: 6379\n password:\n datasource:\n druid:\n stat-view-servlet:\n enabled: true\n loginUsername: admin\n loginPassword: 123456\n dynamic:\n druid:\n initial-size: 5\n min-idle: 5\n maxActive: 20\n maxWait: 60000\n connectTimeout: 30000\n socketTimeout: 60000\n timeBetweenEvictionRunsMillis: 60000\n minEvictableIdleTimeMillis: 300000\n validationQuery: SELECT 1 FROM DUAL\n testWhileIdle: true\n testOnBorrow: false\n testOnReturn: false\n poolPreparedStatements: true\n maxPoolPreparedStatementPerConnectionSize: 20\n filters: stat,slf4j\n connectionProperties: druid.stat.mergeSql\\=true;druid.stat.slowSqlMillis\\=5000\n datasource:\n # 主库数据源\n master:\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: jdbc:mysql://wfc-mysql:3306/wfc_user_db?useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=GMT%2B8\n username: root\n password: 123456\n # 从库数据源\n # slave:\n # username:\n # password:\n # url:\n # driver-class-name:\n\n# mybatis-plus配置\nmybatis-plus:\n # 搜索指定包别名\n type-aliases-package: org.wfc.system\n # 配置mapper的扫描, 找到所有的mapper.xml映射文件\n mapper-locations: classpath:mapper/**/*.xml\n global-config:\n db-config:\n logic-delete-field: del_flag\n logic-delete-value: 1\n logic-not-delete-value: 0\n\n# swagger配置\nswagger:\n title: 系统模块接口文档\n license: Powered By wfc\n licenseUrl: https://wfc.vip\n\nlogging:\n level:\n root: DEBUG\n org:\n springframework: DEBUG\n mybatis:\n mapper: DEBUG\n com:\n github:\n binarywang: DEBUG\n file:\n name: /opt/wfc/logs/wfc-payment.log\n\nwxpay:\n appId: 121412414112\n mchId: 1131412414\n mchKey: 1525342aa\n subAppId: #服务商模式下的子商户公众账号ID\n subMchId: #服务商模式下的子商户号 \n keyPath: /opt/wfc/conf/wxpay/wxpay_key.pem\n useSandboxEnv: true\n\nalipay:\n appId: 121412414112\n privateKey: 1131412414\n publicKey: 1525342aa\n notifyUrl: http://wfc-gateway:${GATEWAY_SERVER_PORT:8080}/alipay/notify\n returnUrl: http://wfc-gateway:${GATEWAY_SERVER_PORT:8080}/alipay/return\n signType: RSA2\n charset: utf-8\n gatewayUrl: https://openapi.alipaydev.com/gateway.do\n logPath: /opt/wfc/logs/alipay/alipay_log.txt\n maxQueryRetry: 5\n queryDuration: 5\n maxCancelRetry: 3\n cancelDuration: 2\n heartbeatDelay: 5\n heartbeatDuration: 5\n storeId: \n storeName: \n supportEmail: \n supportPhone:\n\nccpay:\n url: https://api.paymentgateway.com/v1/payments\n apiKey: api-key from nacos\n merchantId: merchant-id from nacos\n currency: USD\n timeout: 30\n callbackUrl: https://wfc-gateway:${GATEWAY_SERVER_PORT:8080}/payment/callback ' , ' 9f505c9d1ac97d3023044ac718bb0a2d ' , ' 2024-12-31 11:07:54 ' , ' 2024-12-31 11:07:55 ' , NULL , ' 172.20.0.1 ' , ' U ' , ' wfc-prod ' , ' ' ) ;
INSERT INTO ` his_config_info ` VALUES ( 55 , 240 , ' wfc-payment-prod.yml ' , ' DEFAULT_GROUP ' , ' ' , ' # spring配置\nspring:\n application:\n name: wfc-payment\n cloud:\n nacos:\n discovery:\n server-addr: ${NACOS_SERVER_ADDR:wfc-nacos}:${NACOS_SERVER_PORT:8848}\n namespace: ${NACOS_NAMESPACE:wfc-prod}\n \n main:\n allow-bean-definition-overriding: true\n \n redis:\n host: wfc-redis\n port: 6379\n password:\n datasource:\n druid:\n stat-view-servlet:\n enabled: true\n loginUsername: admin\n loginPassword: 123456\n dynamic:\n druid:\n initial-size: 5\n min-idle: 5\n maxActive: 20\n maxWait: 60000\n connectTimeout: 30000\n socketTimeout: 60000\n timeBetweenEvictionRunsMillis: 60000\n minEvictableIdleTimeMillis: 300000\n validationQuery: SELECT 1 FROM DUAL\n testWhileIdle: true\n testOnBorrow: false\n testOnReturn: false\n poolPreparedStatements: true\n maxPoolPreparedStatementPerConnectionSize: 20\n filters: stat,slf4j\n connectionProperties: druid.stat.mergeSql\\=true;druid.stat.slowSqlMillis\\=5000\n datasource:\n # 主库数据源\n master:\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: jdbc:mysql://wfc-mysql:3306/wfc_user_db?useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=GMT%2B8\n username: root\n password: 123456\n # 从库数据源\n # slave:\n # username:\n # password:\n # url:\n # driver-class-name:\n\n# mybatis-plus配置\nmybatis-plus:\n # 搜索指定包别名\n type-aliases-package: org.wfc.system\n # 配置mapper的扫描, 找到所有的mapper.xml映射文件\n mapper-locations: classpath:mapper/**/*.xml\n global-config:\n db-config:\n logic-delete-field: del_flag\n logic-delete-value: 1\n logic-not-delete-value: 0\n\n# swagger配置\nswagger:\n title: 系统模块接口文档\n license: Powered By wfc\n licenseUrl: https://wfc.vip\n\nlogging:\n level:\n root: DEBUG\n org:\n springframework: DEBUG\n mybatis:\n mapper: DEBUG\n com:\n github:\n binarywang: DEBUG\n file:\n name: /opt/wfc/logs/wfc-payment.log\n\nwxpay:\n appId: 121412414112\n mchId: 1131412414\n mchKey: 1525342aa\n subAppId: #服务商模式下的子商户公众账号ID\n subMchId: #服务商模式下的子商户号 \n keyPath: /opt/wfc/conf/wxpay/wxpay_key.pem\n useSandboxEnv: true\n\nalipay:\n appId: 121412414112\n privateKey: 1131412414\n publicKey: 1525342aa\n notifyUrl: http://wfc-gateway:${GATEWAY_SERVER_PORT:8080}/alipay/notify\n returnUrl: http://wfc-gateway:${GATEWAY_SERVER_PORT:8080}/alipay/return\n signType: RSA2\n charset: utf-8\n gatewayUrl: https://openapi.alipaydev.com/gateway.do\n logPath: /opt/wfc/logs/alipay/alipay_log.txt\n maxQueryRetry: 5\n queryDuration: 5\n maxCancelRetry: 3\n cancelDuration: 2\n heartbeatDelay: 5\n heartbeatDuration: 5\n storeId: \n storeName: \n supportEmail: \n supportPhone:\n\nccpay:\n url: https://api.paymentgateway.com/v1/payments\n apiKey: api-key-from-nacos\n merchantId: merchant-id-from-nacos\n currency: USD\n timeout: 30\n callbackUrl: https://wfc-gateway:${GATEWAY_SERVER_PORT:8080}/payment/callback ' , ' 960f4bfa0b0750e743cbda22d61ed666 ' , ' 2024-12-31 11:08:21 ' , ' 2024-12-31 11:08:21 ' , NULL , ' 172.20.0.1 ' , ' U ' , ' wfc-prod ' , ' ' ) ;
INSERT INTO ` his_config_info ` VALUES ( 42 , 241 , ' wfc-gateway-prod.yml ' , ' DEFAULT_GROUP ' , ' ' , ' spring:\n redis:\n host: wfc-redis\n port: 6379\n password:\n cloud:\n gateway:\n discovery:\n locator:\n lowerCaseServiceId: true\n enabled: true\n routes:\n # 认证中心\n - id: wfc-auth\n uri: lb://wfc-auth\n predicates:\n - Path=/auth/**\n filters:\n # 验证码处理\n - CacheRequestFilter\n - ValidateCodeFilter\n - StripPrefix=1\n # 代码生成\n - id: wfc-gen\n uri: lb://wfc-gen\n predicates:\n - Path=/code/**\n filters:\n - StripPrefix=1\n # 定时任务\n - id: wfc-job\n uri: lb://wfc-job\n predicates:\n - Path=/schedule/**\n filters:\n - StripPrefix=1\n # 系统模块\n - id: wfc-system\n uri: lb://wfc-system\n predicates:\n - Path=/system/**\n filters:\n - StripPrefix=1\n # 用户模块\n - id: wfc-user\n uri: lb://wfc-user\n predicates:\n - Path=/u/**\n filters:\n - StripPrefix=1 \n # 文件服务\n - id: wfc-file\n uri: lb://wfc-file\n predicates:\n - Path=/file/**\n filters:\n - StripPrefix=1\n # payment\n - id: wfc-payment\n uri: lb://wfc-payment\n predicates:\n - Path=/payment/**\n filters:\n - StripPrefix=1 \n\n# 安全配置\nsecurity:\n # 验证码\n captcha:\n enabled: true\n type: math\n # 防止XSS攻击\n xss:\n enabled: true\n excludeUrls:\n - /system/notice\n # 不校验白名单\n ignore:\n whites:\n - /auth/logout\n - /auth/login\n - /auth/register\n - /auth/checkRepeat\n - /payment/wxpay/queryOrder\n - /payment/alipay/pay \n - /*/v2/api-docs\n - /csrf\n ' , ' f7195a806d72964f4daa373ec5b3b57c ' , ' 2024-12-31 11:30:00 ' , ' 2024-12-31 11:30:00 ' , NULL , ' 172.20.0.1 ' , ' U ' , ' wfc-prod ' , ' ' ) ;
-- ----------------------------
-- Table structure for permissions