eight
2024-08-06 a7fce34ddec790d1a104c3bf4b47148a5e00b66a
update for db & redis config
已修改2个文件
39 ■■■■ 文件已修改
.gitignore 21 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
jh-server/src/main/resources/application-local.yaml 18 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
.gitignore
@@ -1 +1,22 @@
.DS_Store
/jh-server/target
/jh-module-system/jh-module-system-biz/target
/jh-module-system/jh-module-system-api/target
/jh-module-infra/jh-module-infra-biz/target
/jh-module-infra/jh-module-infra-api/target
/jh-framework/jh-spring-boot-starter-websocket/target
/jh-framework/jh-spring-boot-starter-web/target
/jh-framework/jh-spring-boot-starter-security/target
/jh-framework/jh-spring-boot-starter-redis/target
/jh-framework/jh-spring-boot-starter-protection/target
/jh-framework/jh-spring-boot-starter-mybatis/target
/jh-framework/jh-spring-boot-starter-mq/target
/jh-framework/jh-spring-boot-starter-monitor/target
/jh-framework/jh-spring-boot-starter-job/target
/jh-framework/jh-spring-boot-starter-excel/target
/jh-framework/jh-spring-boot-starter-biz-tenant/target
/jh-framework/jh-spring-boot-starter-biz-ip/target
/jh-framework/jh-spring-boot-starter-biz-data-permission/target
/jh-framework/jh-common/target
/.idea
.flattened-pom.xml
jh-server/src/main/resources/application-local.yaml
@@ -46,7 +46,7 @@
      primary: master
      datasource:
        master:
          url: jdbc:mysql://127.0.0.1:3306/ruoyi-vue-pro?useSSL=false&serverTimezone=Asia/Shanghai&allowPublicKeyRetrieval=true&nullCatalogMeansCurrent=true # MySQL Connector/J 8.X 连接的示例
          url: jdbc:mysql://rm-cn-lbj3spkaz000cx2o.rwlb.rds.aliyuncs.com:3306/lihu?useSSL=false&serverTimezone=Asia/Shanghai&allowPublicKeyRetrieval=true&nullCatalogMeansCurrent=true # MySQL Connector/J 8.X 连接的示例
          #          url: jdbc:mysql://127.0.0.1:3306/ruoyi-vue-pro?useSSL=true&allowPublicKeyRetrieval=true&useUnicode=true&characterEncoding=UTF-8&serverTimezone=Asia/Shanghai # MySQL Connector/J 5.X 连接的示例
          #          url: jdbc:postgresql://127.0.0.1:5432/ruoyi-vue-pro # PostgreSQL 连接的示例
          #          url: jdbc:oracle:thin:@127.0.0.1:1521:xe # Oracle 连接的示例
@@ -54,8 +54,8 @@
          #          url: jdbc:dm://127.0.0.1:5236?schema=RUOYI_VUE_PRO # DM 连接的示例
          #          url: jdbc:kingbase8://127.0.0.1:54321/test  # 人大金仓 KingbaseES 连接的示例
          #          url: jdbc:postgresql://127.0.0.1:5432/postgres # OpenGauss 连接的示例
          username: root
          password: 123456
          username: yinyu
          password: Root@yinyu
          #          username: sa # SQL Server 连接的示例
          #          password: Jh@2024 # SQL Server 连接的示例
          #          username: SYSDBA # DM 连接的示例
@@ -64,16 +64,16 @@
          #          password: Jh@2024 # OpenGauss 连接的示例
        slave: # 模拟从库,可根据自己需要修改
          lazy: true # 开启懒加载,保证启动速度
          url: jdbc:mysql://127.0.0.1:3306/ruoyi-vue-pro?useSSL=false&serverTimezone=Asia/Shanghai&allowPublicKeyRetrieval=true&nullCatalogMeansCurrent=true
          username: root
          password: 123456
          url: jdbc:mysql://rm-cn-lbj3spkaz000cx2o.rwlb.rds.aliyuncs.com:3306/lihu?useSSL=false&serverTimezone=Asia/Shanghai&allowPublicKeyRetrieval=true&nullCatalogMeansCurrent=true # MySQL Connector/J 8.X 连接的示例
          username: yinyu
          password: Root@yinyu
  # Redis 配置。Redisson 默认的配置足够使用,一般不需要进行调优
  redis:
    host: 127.0.0.1 # 地址
    host: r-bp1zyjl0g07e1ry08rpd.redis.rds.aliyuncs.com # 地址
    port: 6379 # 端口
    database: 0 # 数据库索引
#    password: dev # 密码,建议生产环境开启
    database: 2 # 数据库索引
    password: Root@yinyu # 密码,建议生产环境开启
--- #################### 定时任务相关配置 ####################