From f0376f72170c2eb236bec5560b8c5734edd222f1 Mon Sep 17 00:00:00 2001
From: kaiyu <404897439@qq.com>
Date: Wed, 31 Mar 2021 17:16:40 +0800
Subject: [PATCH] common模块: 增加了convert工具类,驼峰和下划线相互转换 更新了Date工具类,添加根据Date,day获取目标date的方法 更新WebUtils工具类,添加获取请求Ip方法 manage模块: 组织和后台用户增删改查模块全部完成 增加aop用作日志插入
---
screen-manage/src/main/resources/application-dev.yml | 54 +++++++++++++++++++++++++++++++++++++++++++++++++-----
1 files changed, 49 insertions(+), 5 deletions(-)
diff --git a/screen-manage/src/main/resources/application-dev.yml b/screen-manage/src/main/resources/application-dev.yml
index ac59da8..092bb7a 100644
--- a/screen-manage/src/main/resources/application-dev.yml
+++ b/screen-manage/src/main/resources/application-dev.yml
@@ -20,9 +20,9 @@
#nodes: 47.112.126.78:7001,47.112.126.78:7002,47.112.126.132:7003,47.112.126.132:7004,47.112.132.193:7005,47.112.132.193:7006
#password: test
#timeout: 500
- host: 127.0.0.1
+ host: 39.97.177.149
port: 6379
- password: 123456
+ password: chenkaiyu111
timeout: 30000
jedis:
pool:
@@ -36,6 +36,18 @@
max-idle: 64
max-wait: 30000
min-idle: 32
+ tokenRedis:
+ host: 39.97.177.149
+ port: 6379
+ password: chenkaiyu111
+ timeout: 30000
+ database: 14
+ pool:
+ max-active: 256
+ max-wait: 30000
+ max-idle: 64
+ min-idle: 32
+
datasource:
minIdle: 1
time-between-eviction-runs-millis: 60000
@@ -45,8 +57,9 @@
filters: stat
type: com.alibaba.druid.pool.DruidDataSource
max-wait: 60000
- url: jdbc:mysql://192.168.0.18:4000/test?useUnicode=true&characterEncoding=UTF-8&useSSL=false&serverTimezone=UTC
- password: 123456
+ url: jdbc:mysql://39.97.177.149:3306/moral?useUnicode=true&characterEncoding=UTF-8&useSSL=false&serverTimezone=Asia/Shanghai
+ username: root
+ password: chenkaiyu111
test-on-borrow: false
sql-script-encoding: utf-8
pool-prepared-statements: true
@@ -55,7 +68,6 @@
driver-class-name: com.mysql.cj.jdbc.Driver
max-conn-lifetime-millis: 20
test-on-return: false
- username: root
mybatis-plus:
mapper-locations: classpath:mapper/*.xml
@@ -98,4 +110,36 @@
linger: 1
retries: 0
servers: 192.168.0.16:9092,192.168.0.17:9092,192.168.0.18:9092
+mvc:
+ interceptor:
+ exclude:
+ - /login
+ - /swagger-ui.html
+ - /swagger-resources/**
+ - /webjars/**
+ - /logout
+ - /account/insert
+ - /account/query
+ - /account/update
+ - /account/delete
+ - /account/yanzhengma
+ - /verificationCode/get
+ - /verificationCode/verify
+ - /verificationCode/config
+ - /organization/insert
+ - /organization/update
+ - /organization/delete
+ - /organization/query
+
+ - /role/getAllManageRole
+ - /role/getManageRoleByNameFuzzy
+ - /role/updateRoleMenu
+ - /menu/getAllManageMenu
+ - /menu/getManageMenuByNameFuzzy
+AES:
+ KEY:
+ AD42F7787B035B7580000EF93BE20BAD
+TOKEN:
+ KEY:
+ foh3wi2ooghiCh5
--
Gitblit v1.8.0