From e809daa7e61b52c92c65f5d70936005634ef5688 Mon Sep 17 00:00:00 2001 From: wangxy <1481820854@qq.com> Date: Thu, 7 Nov 2024 14:25:50 +0800 Subject: [PATCH] =?UTF-8?q?feat:=E7=80=9A=E9=AB=98=E9=80=82=E9=85=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ruoyi-admin/pom.xml | 6 ++++ .../src/main/resources/application-prod.yml | 28 +++++++++---------- .../src/main/resources/application.yml | 2 +- .../resources/mapper/system/ElExamMapper.xml | 4 +-- .../resources/mapper/system/SysMenuMapper.xml | 16 +++++------ .../mapper/system/SysUserOnlineMapper.xml | 14 +++++----- .../mapper/system/TdCarrierIssuedMapper.xml | 8 +++--- .../mapper/system/TdCarrierMapper.xml | 8 +++--- 8 files changed, 46 insertions(+), 40 deletions(-) diff --git a/ruoyi-admin/pom.xml b/ruoyi-admin/pom.xml index a13ee7e..493f74d 100644 --- a/ruoyi-admin/pom.xml +++ b/ruoyi-admin/pom.xml @@ -56,6 +56,12 @@ 8.6.0 + + + com.highgo + HgdbJdbc + 6.2.3 + diff --git a/ruoyi-admin/src/main/resources/application-prod.yml b/ruoyi-admin/src/main/resources/application-prod.yml index 11d5ef7..c88f566 100644 --- a/ruoyi-admin/src/main/resources/application-prod.yml +++ b/ruoyi-admin/src/main/resources/application-prod.yml @@ -2,24 +2,24 @@ spring: datasource: type: com.alibaba.druid.pool.DruidDataSource -# driverClassName: com.mysql.cj.jdbc.Driver - driverClassName: com.kingbase8.Driver + #driverClassName: org.postgresql.Driver + driverClassName: com.highgo.jdbc.Driver druid: # 主库数据源 master: - url: jdbc:kingbase8://192.168.110.55:54321/test?useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=GMT%2B8&clientEncoding=UTF8 - #username: root - #password: qwer1234 - username: ENC(ElFzIjuV3codlxGotvqqyA==) -# password: ENC(aM81j4MP4WJC4ZQBNlDntx0jKsP3wwQZ) - password: ENC(1p5e3vtTaq7oHGRDipJo/Q==) + #url: jdbc:postgresql://192.168.254.176:5432/work-portal?useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=GMT%2B8 + url: jdbc:highgo://127.0.0.1:5866/zhky?useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=GMT%2B8 + #username: postgres highgo + #password: Qwer@1234 Qwer@1234 + username: ENC(JLAHIbU3w8J5iJ1Uye0G3A==) + password: ENC(SRDnQl+5Iv2SC4UzwhSeILfFUUmY4pka) # 从库数据源 slave: # 从数据源开关/默认关闭 enabled: false - url: - username: - password: + url: + username: + password: # 初始连接数 initialSize: 5 # 最小连接池数量 @@ -39,11 +39,11 @@ spring: # 配置一个连接在池中最大生存的时间,单位是毫秒 maxEvictableIdleTimeMillis: 900000 # 配置检测连接是否有效 - validationQuery: SELECT 1 FROM DUAL + validationQuery: SELECT 1 testWhileIdle: true testOnBorrow: false testOnReturn: false - webStatFilter: + webStatFilter: enabled: true statViewServlet: enabled: true @@ -62,4 +62,4 @@ spring: merge-sql: true wall: config: - multi-statement-allow: true \ No newline at end of file + multi-statement-allow: true diff --git a/ruoyi-admin/src/main/resources/application.yml b/ruoyi-admin/src/main/resources/application.yml index 5e96480..08e8cd1 100644 --- a/ruoyi-admin/src/main/resources/application.yml +++ b/ruoyi-admin/src/main/resources/application.yml @@ -59,7 +59,7 @@ spring: time-zone: GMT+8 date-format: yyyy-MM-dd HH:mm:ss profiles: - active: dev + active: prod # 文件上传 servlet: multipart: diff --git a/ruoyi-system/src/main/resources/mapper/system/ElExamMapper.xml b/ruoyi-system/src/main/resources/mapper/system/ElExamMapper.xml index e52dcf3..47de7c3 100644 --- a/ruoyi-system/src/main/resources/mapper/system/ElExamMapper.xml +++ b/ruoyi-system/src/main/resources/mapper/system/ElExamMapper.xml @@ -50,9 +50,9 @@ - select distinct m.menu_id, m.parent_id, m.menu_name, m.url, m.visible, m.is_refresh, ifnull(m.perms,'') as perms, m.target, m.menu_type, m.icon, m.order_num, m.create_time + select distinct m.menu_id, m.parent_id, m.menu_name, m.url, m.visible, m.is_refresh, COALESCE(m.perms,'') as perms, m.target, m.menu_type, m.icon, m.order_num, m.create_time from sys_menu m left join sys_role_menu rm on m.menu_id = rm.menu_id left join sys_user_role ur on rm.role_id = ur.role_id LEFT JOIN sys_role ro on ur.role_id = ro.role_id - where ur.user_id = #{userId} and m.menu_type in ('M', 'C') and m.visible = 0 AND ro.status = 0 + where ur.user_id = #{userId} and m.menu_type in ('M', 'C') and m.visible = '0' AND ro.status = '0' order by m.parent_id, m.order_num @@ -52,7 +52,7 @@ - where sessionId = #{sessionId} + where session_id = #{sessionId} - insert into sys_user_online(sessionId, login_name, dept_name, ipaddr, login_location, browser, os, status, start_timestamp, last_access_time, expire_time) + insert into sys_user_online(session_id, login_name, dept_name, ipaddr, login_location, browser, os, status, start_timestamp, last_access_time, expire_time) values (#{sessionId}, #{loginName}, #{deptName}, #{ipaddr}, #{loginLocation}, #{browser}, #{os}, #{status}, #{startTimestamp}, #{lastAccessTime}, #{expireTime}) @@ -47,11 +47,11 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" last_access_time = #{lastAccessTime}, expire_time = #{expireTime}, - where sessionId = #{sessionId} + where session_id = #{sessionId} - delete from sys_user_online where sessionId = #{sessionId} + delete from sys_user_online where session_id = #{sessionId} o - WHERE o.last_access_time #{lastAccessTime} ORDER BY o.last_access_time ASC + WHERE o.last_access_time <= CAST(#{lastAccessTime} AS TIMESTAMP) ORDER BY o.last_access_time ASC \ No newline at end of file diff --git a/ruoyi-system/src/main/resources/mapper/system/TdCarrierIssuedMapper.xml b/ruoyi-system/src/main/resources/mapper/system/TdCarrierIssuedMapper.xml index 64f88af..b21a8d1 100644 --- a/ruoyi-system/src/main/resources/mapper/system/TdCarrierIssuedMapper.xml +++ b/ruoyi-system/src/main/resources/mapper/system/TdCarrierIssuedMapper.xml @@ -38,7 +38,7 @@ - + @@ -55,7 +55,7 @@ update_time,remark,carrier_name, area_city,area_district,maintain_stand, destory_stand,issued_dept,expiration_time, - mentSend_time,reclaim_time,dept_id + mentsend_time,reclaim_time,dept_id