Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
certificate-print
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
廖旭伟
certificate-print
Commits
4e4e6dd1
Commit
4e4e6dd1
authored
Oct 20, 2022
by
廖旭伟
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改配置
parent
1794995d
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
35 additions
and
13 deletions
+35
-13
certificate-manager/pom.xml
certificate-manager/pom.xml
+22
-2
certificate-manager/src/main/resources/bootstrap.yml
certificate-manager/src/main/resources/bootstrap.yml
+13
-11
No files found.
certificate-manager/pom.xml
View file @
4e4e6dd1
...
@@ -25,7 +25,17 @@
...
@@ -25,7 +25,17 @@
</activation>
</activation>
<properties>
<properties>
<profiles.active>
develop
</profiles.active>
<profiles.active>
develop
</profiles.active>
<profiles.server.port>
17215
</profiles.server.port>
<profiles.server.port>
17216
</profiles.server.port>
<profiles.datasource.uri>
<![CDATA[jdbc:mysql://192.168.0.98:3306/certificate?useUnicode=true&characterEncoding=utf8&useSSL=false&serverTimezone=Hongkong]]>
</profiles.datasource.uri>
<profiles.datasource.username>
root
</profiles.datasource.username>
<profiles.datasource.password>
nacos@2020
</profiles.datasource.password>
<profiles.redis.uri>
192.168.0.252
</profiles.redis.uri>
<profiles.redis.port>
6379
</profiles.redis.port>
<profiles.redis.username></profiles.redis.username>
<profiles.redis.password>
hotel@2020
</profiles.redis.password>
<profiles.redis.database>
6
</profiles.redis.database>
<profiles.filepath>
/mortals/app/data/cpm
</profiles.filepath>
<profiles.queue.type>
rabbitmq
</profiles.queue.type>
<profiles.queue.type>
rabbitmq
</profiles.queue.type>
<profiles.kafka.brokers>
192.168.0.251:9092
</profiles.kafka.brokers>
<profiles.kafka.brokers>
192.168.0.251:9092
</profiles.kafka.brokers>
<profiles.rabbitmq.host>
192.168.0.98
</profiles.rabbitmq.host>
<profiles.rabbitmq.host>
192.168.0.98
</profiles.rabbitmq.host>
...
@@ -40,7 +50,17 @@
...
@@ -40,7 +50,17 @@
<id>
test
</id>
<id>
test
</id>
<properties>
<properties>
<profiles.active>
test
</profiles.active>
<profiles.active>
test
</profiles.active>
<profiles.server.port>
17001
</profiles.server.port>
<profiles.server.port>
17216
</profiles.server.port>
<profiles.datasource.uri>
<![CDATA[jdbc:mysql://192.168.0.98:3306/certificate?useUnicode=true&characterEncoding=utf8&useSSL=false&serverTimezone=Hongkong]]>
</profiles.datasource.uri>
<profiles.datasource.username>
root
</profiles.datasource.username>
<profiles.datasource.password>
nacos@2020
</profiles.datasource.password>
<profiles.redis.uri>
192.168.0.252
</profiles.redis.uri>
<profiles.redis.port>
6379
</profiles.redis.port>
<profiles.redis.username></profiles.redis.username>
<profiles.redis.password>
hotel@2020
</profiles.redis.password>
<profiles.redis.database>
6
</profiles.redis.database>
<profiles.filepath>
/mortals/app/data/cpm
</profiles.filepath>
<profiles.queue.type>
rabbitmq
</profiles.queue.type>
<profiles.queue.type>
rabbitmq
</profiles.queue.type>
<profiles.kafka.brokers>
192.168.0.251:9092
</profiles.kafka.brokers>
<profiles.kafka.brokers>
192.168.0.251:9092
</profiles.kafka.brokers>
<profiles.rabbitmq.host>
192.168.0.98
</profiles.rabbitmq.host>
<profiles.rabbitmq.host>
192.168.0.98
</profiles.rabbitmq.host>
...
...
certificate-manager/src/main/resources/bootstrap.yml
View file @
4e4e6dd1
server
:
server
:
port
:
18001
port
:
@
profiles.server.port@
servlet
:
servlet
:
context-path
:
/cpm
context-path
:
/cpm
tomcat
:
tomcat
:
uri-encoding
:
utf-8
uri-encoding
:
utf-8
spring
:
spring
:
application
:
application
:
name
:
@
project.artifactId@
name
:
certificate-manager
profiles
:
profiles
:
active
:
develop
active
:
@
profiles.active@
servlet
:
servlet
:
multipart
:
multipart
:
max-file-size
:
100MB
max-file-size
:
100MB
...
@@ -22,9 +22,11 @@ spring:
...
@@ -22,9 +22,11 @@ spring:
name
:
admin
name
:
admin
password
:
1
password
:
1
redis
:
redis
:
host
:
127.0.0.1
host
:
@
profiles.redis.uri@
port
:
6379
port
:
@
profiles.redis.port@
database
:
6
username
:
@
profiles.redis.username@
password
:
@
profiles.redis.password@
database
:
@
profiles.redis.database@
timeout
:
30000
timeout
:
30000
pool
:
pool
:
max-idle
:
30
max-idle
:
30
...
@@ -34,9 +36,9 @@ spring:
...
@@ -34,9 +36,9 @@ spring:
datasource
:
datasource
:
type
:
com.alibaba.druid.pool.DruidDataSource
type
:
com.alibaba.druid.pool.DruidDataSource
driver-class-name
:
com.mysql.cj.jdbc.Driver
driver-class-name
:
com.mysql.cj.jdbc.Driver
url
:
jdbc:mysql://localhost:3306/certificate?useUnicode=true&characterEncoding=utf8&useSSL=false&serverTimezone=Hongkong
url
:
@
profiles.datasource.uri@
username
:
root
username
:
@
profiles.datasource.username@
password
:
12345678
password
:
@
profiles.datasource.password@
mybatis
:
mybatis
:
root-path
:
com.mortals
root-path
:
com.mortals
type-aliases-package
:
com.mortals.framework.model,com.mortals.xhx.common.**.model,com.mortals.xhx.**.model
type-aliases-package
:
com.mortals.framework.model,com.mortals.xhx.common.**.model,com.mortals.xhx.**.model
...
@@ -57,4 +59,4 @@ cookie:
...
@@ -57,4 +59,4 @@ cookie:
token
:
token
:
head
:
mortal
head
:
mortal
upload
:
upload
:
path
:
D:
/mortals/app/data/cpm
path
:
/mortals/app/data/cpm
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