...
|
...
|
@@ -2,10 +2,12 @@ |
|
|
web:
|
|
|
upload-path: upload/
|
|
|
server:
|
|
|
port: 8002
|
|
|
port: 8066
|
|
|
servlet:
|
|
|
context-path: ${SERVER_CONTEXTPATH:}
|
|
|
spring:
|
|
|
devtools:
|
|
|
add-properties: false
|
|
|
profiles:
|
|
|
active: dev
|
|
|
mvc:
|
...
|
...
|
@@ -17,7 +19,7 @@ spring: |
|
|
static-locations: classpath:/META-INF/resources/,classpath:/static,classpath:/resources/,file:${web.upload-path}
|
|
|
|
|
|
application:
|
|
|
name: hqpt-user-center
|
|
|
name: cloud-user-center
|
|
|
redis:
|
|
|
host: 192.168.1.53
|
|
|
port: 6379
|
...
|
...
|
@@ -50,10 +52,10 @@ spring: |
|
|
#username=CGOETL
|
|
|
#password=1q2w3e4r
|
|
|
#spring datasource mysql,注意编码配置,缺少数据库编码配置容易引起中文入库乱码
|
|
|
url: jdbc:mysql://118.31.66.166:3306/HQPT_USER?useUnicode=true&characterEncoding=utf8
|
|
|
url: jdbc:mysql://118.31.66.166:3306/statistics?useUnicode=true&characterEncoding=utf8
|
|
|
username: 110
|
|
|
password: QAHqCJf2kFYCLirM
|
|
|
driver-class-name: com.mysql.jdbc.Driver
|
|
|
driver-class-name: com.mysql.cj.jdbc.Driver
|
|
|
max-idle: 10
|
|
|
max-wait: 10000
|
|
|
min-idle: 5
|
...
|
...
|
@@ -85,16 +87,29 @@ eureka: |
|
|
prefer-ip-address: true
|
|
|
instance-id: ${spring.cloud.client.ip-address}:${server.port}
|
|
|
hostname: ${spring.cloud.client.ip-address}
|
|
|
lease-renewal-interval-in-seconds: 15
|
|
|
lease-expiration-duration-in-seconds: 45
|
|
|
health-check-url-path: /actuator/health
|
|
|
client:
|
|
|
#eureka注册中心服务器地址
|
|
|
service-url:
|
|
|
defaultZone: http://192.168.1.53:12345/eureka/
|
|
|
registry-fetch-interval-seconds: 30
|
|
|
lease-renewal-interval-in-seconds: 15
|
|
|
lease-expiration-duration-in-seconds: 45
|
|
|
|
|
|
|
|
|
|
|
|
management:
|
|
|
endpoints:
|
|
|
enabled-by-default: true
|
|
|
web:
|
|
|
exposure:
|
|
|
include: "*"
|
|
|
endpoint:
|
|
|
health:
|
|
|
show-details: always
|
|
|
shutdown:
|
|
|
enabled: true
|
|
|
|
|
|
mybatis:
|
|
|
mapper-locations: classpath:mapping/*.xml
|
|
|
type-aliases-package: com.tianbo.warehouse.model
|
...
|
...
|
@@ -125,3 +140,7 @@ logging: |
|
|
#Java Web Token 时效时间,单位秒
|
|
|
jwt:
|
|
|
max-alive: 30000
|
|
|
|
|
|
info:
|
|
|
version: 2.0
|
|
|
description: "具有公司及部门管理级别的用户管理中心" |
...
|
...
|
|