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: |
spring: |
||||||
application: |
application: |
||||||
name: compose-analysis |
name: compose-analysis |
||||||
cloud: |
data: |
||||||
nacos: |
mongodb: |
||||||
discovery: |
uri: mongodb://127.0.0.1:27017/KEYSWAN |
||||||
server-addr: 127.0.0.1:8848 |
redis: |
||||||
namespace: 4ce70f33-8b88-4931-a88c-2b68e7259bd7 |
host: 127.0.0.1 |
||||||
config: |
port: 6379 |
||||||
server-addr: 127.0.0.1:8848 |
password: 123456 |
||||||
namespace: 4ce70f33-8b88-4931-a88c-2b68e7259bd7 |
|
||||||
file-extension: yaml |
datasource: |
||||||
config: |
driver-class-name: com.mysql.cj.jdbc.Driver |
||||||
import: nacos:compose-analysis-dev.yaml |
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