forked from liuzongren/compose-analysis
parent
890ed17d84
commit
6cd67e6ee4
@ -0,0 +1,42 @@ |
||||
server: |
||||
port: 8001 |
||||
|
||||
spring: |
||||
application: |
||||
name: compose-analysis |
||||
data: |
||||
mongodb: |
||||
uri: mongodb://127.0.0.1:27017/KEYSWAN |
||||
redis: |
||||
host: 127.0.0.1 |
||||
port: 6379 |
||||
password: 123456 |
||||
datasource: |
||||
driver-class-name: com.mysql.cj.jdbc.Driver |
||||
url: jdbc:mysql://127.0.0.1:3306/keyswan?useUnicode=true&characterEncoding=utf-8&useSSL=true&serverTimezone=GMT%2B8 |
||||
username: root |
||||
password: 123456 |
||||
hikari: |
||||
#最小连接数 |
||||
minimum-idle: 5 |
||||
#最大连接数 |
||||
maximum-pool-size: 30 |
||||
#最大空闲时间 |
||||
idle-timeout: 30000 |
||||
#连接超时时间 |
||||
connection-timeout: 30000 |
||||
#自动提交 |
||||
auto-commit: true |
||||
|
||||
#solr检索库地址 |
||||
solr: |
||||
solrUrl: http://172.16.36.7:8993/solr/ |
||||
#批量匹配时,返回的匹配数量 |
||||
row: 5 |
||||
|
||||
#被测件上传存储路径 |
||||
codeResourcePath: D:\codeResourcePath |
||||
|
||||
logging: |
||||
level: |
||||
com.txlc.dwh.job.common.interceptor.PerformanceInterceptor: debug |
@ -1,15 +1,45 @@ |
||||
server: |
||||
port: 8001 |
||||
|
||||
spring: |
||||
application: |
||||
name: compose-analysis |
||||
cloud: |
||||
nacos: |
||||
discovery: |
||||
server-addr: 127.0.0.1:8848 |
||||
namespace: 4ce70f33-8b88-4931-a88c-2b68e7259bd7 |
||||
config: |
||||
server-addr: 127.0.0.1:8848 |
||||
namespace: 4ce70f33-8b88-4931-a88c-2b68e7259bd7 |
||||
file-extension: yaml |
||||
config: |
||||
import: nacos:compose-analysis-dev.yaml |
||||
data: |
||||
mongodb: |
||||
uri: mongodb://127.0.0.1:27017/KEYSWAN |
||||
redis: |
||||
host: 127.0.0.1 |
||||
port: 6379 |
||||
password: 123456 |
||||
|
||||
datasource: |
||||
driver-class-name: com.mysql.cj.jdbc.Driver |
||||
url: jdbc:mysql://127.0.0.1:3306/keyswan?useUnicode=true&characterEncoding=utf-8&useSSL=true&serverTimezone=GMT%2B8 |
||||
username: root |
||||
password: 123456 |
||||
hikari: |
||||
#最小连接数 |
||||
minimum-idle: 5 |
||||
#最大连接数 |
||||
maximum-pool-size: 30 |
||||
#最大空闲时间 |
||||
idle-timeout: 30000 |
||||
#连接超时时间 |
||||
connection-timeout: 30000 |
||||
#自动提交 |
||||
auto-commit: true |
||||
|
||||
|
||||
#solr检索库地址 |
||||
solr: |
||||
solrUrl: http://172.16.36.7:8993/solr/ |
||||
#批量匹配时,返回的匹配数量 |
||||
row: 5 |
||||
|
||||
#被测件上传存储路径 |
||||
codeResourcePath: D:\codeResourcePath |
||||
|
||||
logging: |
||||
level: |
||||
com.txlc.dwh.job.common.interceptor.PerformanceInterceptor: debug |
||||
|
||||
|
Loading…
Reference in new issue