You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
963 B
41 lines
963 B
#
|
|
spring:
|
|
cloud:
|
|
consul:
|
|
host: 127.0.0.1
|
|
port: 8500
|
|
discovery:
|
|
service-name: ${spring.application.name}-server
|
|
prefer-ip-address: true
|
|
ip-address: 127.0.0.1
|
|
application:
|
|
name: entry-data
|
|
datasource:
|
|
driver-class-name: com.mysql.cj.jdbc.Driver
|
|
url: jdbc:mysql://127.0.0.1:3306/entry_data?useSSL=false&useUnicode=true&characterEncoding=utf-8&allowMultiQueries=true&serverTimezone=Asia/Shanghai&allowPublicKeyRetrieval=true
|
|
username: root
|
|
password: root
|
|
|
|
redis:
|
|
jedis:
|
|
pool:
|
|
max-active: 300
|
|
max-idle: 100
|
|
min-idle: 8
|
|
timeout: 20000ms
|
|
database: 13
|
|
host: 127.0.0.1
|
|
port: 6379
|
|
password: Redis2020com
|
|
jpa:
|
|
open-in-view: false
|
|
show-sql: true
|
|
hibernate:
|
|
naming:
|
|
physical-strategy: org.hibernate.boot.model.naming.PhysicalNamingStrategyStandardImpl
|
|
server:
|
|
port: 9005
|
|
|
|
jove:
|
|
session:
|
|
strategy: TOKEN_STRATEGY
|
|
|