Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Sign in / Register
Toggle navigation
H
hzsomms
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
ZTGK
hzsomms
Commits
ff26a208
Commit
ff26a208
authored
Aug 16, 2024
by
史志龙
Browse files
Options
Browse Files
Download
Plain Diff
Merge remote-tracking branch 'origin/dev' into dev
parents
be6ab79e
6ae7059f
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
9 additions
and
9 deletions
+9
-9
pom.xml
jeecg-module-system/pom.xml
+3
-3
application-dev.yml
jeecg-module-system/src/main/resources/application-dev.yml
+1
-1
application-uat.yml
jeecg-module-system/src/main/resources/application-uat.yml
+3
-3
logback-spring.xml
jeecg-module-system/src/main/resources/logback-spring.xml
+2
-2
No files found.
jeecg-module-system/pom.xml
View file @
ff26a208
...
@@ -71,11 +71,11 @@
...
@@ -71,11 +71,11 @@
</activation>
</activation>
</profile>
</profile>
<!--
测试
环境 -->
<!--
预计生产
环境 -->
<profile>
<profile>
<id>
tes
t
</id>
<id>
ua
t
</id>
<properties>
<properties>
<package.environment>
tes
t
</package.environment>
<package.environment>
ua
t
</package.environment>
</properties>
</properties>
</profile>
</profile>
...
...
jeecg-module-system/src/main/resources/application-dev.yml
View file @
ff26a208
...
@@ -137,7 +137,7 @@ spring:
...
@@ -137,7 +137,7 @@ spring:
driver-class-name
:
com.mysql.cj.jdbc.Driver
driver-class-name
:
com.mysql.cj.jdbc.Driver
#redis 配置
#redis 配置
redis
:
redis
:
database
:
9
database
:
0
host
:
47.94.207.62
host
:
47.94.207.62
lettuce
:
lettuce
:
pool
:
pool
:
...
...
jeecg-module-system/src/main/resources/application-
tes
t.yml
→
jeecg-module-system/src/main/resources/application-
ua
t.yml
View file @
ff26a208
...
@@ -131,13 +131,13 @@ spring:
...
@@ -131,13 +131,13 @@ spring:
connectionProperties
:
druid.stat.mergeSql\=true;druid.stat.slowSqlMillis\=5000
connectionProperties
:
druid.stat.mergeSql\=true;druid.stat.slowSqlMillis\=5000
datasource
:
datasource
:
master
:
master
:
url
:
jdbc:mysql://
192.168.81.83:3306/hzgw
?characterEncoding=UTF-8&useUnicode=true&useSSL=false&tinyInt1isBit=false&zeroDateTimeBehavior=convertToNull
url
:
jdbc:mysql://
47.94.207.62:3306/hzgw_uat
?characterEncoding=UTF-8&useUnicode=true&useSSL=false&tinyInt1isBit=false&zeroDateTimeBehavior=convertToNull
username
:
root
username
:
root
password
:
ABCD@abcd+1234
password
:
superAdmin&321
driver-class-name
:
com.mysql.cj.jdbc.Driver
driver-class-name
:
com.mysql.cj.jdbc.Driver
#redis 配置
#redis 配置
redis
:
redis
:
database
:
9
database
:
2
host
:
47.94.207.62
host
:
47.94.207.62
lettuce
:
lettuce
:
pool
:
pool
:
...
...
jeecg-module-system/src/main/resources/logback-spring.xml
View file @
ff26a208
...
@@ -21,7 +21,7 @@
...
@@ -21,7 +21,7 @@
<appender
name=
"FILE"
class=
"ch.qos.logback.core.rolling.RollingFileAppender"
>
<appender
name=
"FILE"
class=
"ch.qos.logback.core.rolling.RollingFileAppender"
>
<rollingPolicy
class=
"ch.qos.logback.core.rolling.SizeAndTimeBasedRollingPolicy"
>
<rollingPolicy
class=
"ch.qos.logback.core.rolling.SizeAndTimeBasedRollingPolicy"
>
<!--日志文件输出的文件名 -->
<!--日志文件输出的文件名 -->
<FileNamePattern>
${LOG_HOME}/
jeecgboot
-%d{yyyy-MM-dd}.%i.log
</FileNamePattern>
<FileNamePattern>
${LOG_HOME}/
hzgw-pc
-%d{yyyy-MM-dd}.%i.log
</FileNamePattern>
<!--日志文件保留天数 -->
<!--日志文件保留天数 -->
<MaxHistory>
30
</MaxHistory>
<MaxHistory>
30
</MaxHistory>
<maxFileSize>
10MB
</maxFileSize>
<maxFileSize>
10MB
</maxFileSize>
...
@@ -51,7 +51,7 @@
...
@@ -51,7 +51,7 @@
<appender
name=
"FILE_HTML"
class=
"ch.qos.logback.core.rolling.RollingFileAppender"
>
<appender
name=
"FILE_HTML"
class=
"ch.qos.logback.core.rolling.RollingFileAppender"
>
<rollingPolicy
class=
"ch.qos.logback.core.rolling.SizeAndTimeBasedRollingPolicy"
>
<rollingPolicy
class=
"ch.qos.logback.core.rolling.SizeAndTimeBasedRollingPolicy"
>
<!--日志文件输出的文件名 -->
<!--日志文件输出的文件名 -->
<FileNamePattern>
${LOG_HOME}/
jeecgboot
-%d{yyyy-MM-dd}.%i.html
</FileNamePattern>
<FileNamePattern>
${LOG_HOME}/
hzgw-pc
-%d{yyyy-MM-dd}.%i.html
</FileNamePattern>
<!--日志文件保留天数 -->
<!--日志文件保留天数 -->
<MaxHistory>
30
</MaxHistory>
<MaxHistory>
30
</MaxHistory>
<MaxFileSize>
10MB
</MaxFileSize>
<MaxFileSize>
10MB
</MaxFileSize>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment