66 lines
1.8 KiB
YAML
66 lines
1.8 KiB
YAML
server:
|
|
servlet:
|
|
session:
|
|
cookie:
|
|
same-site: None
|
|
secure: true # 生产是 https 必须 true
|
|
port: 9005
|
|
#spring:
|
|
# data:
|
|
# redis:
|
|
# host: 167.253.156.235
|
|
# port: 6739
|
|
# password: redis_a7Gw6f
|
|
#spring:
|
|
# data:
|
|
# redis:
|
|
# host: 103.244.88.91
|
|
# port: 6379
|
|
# password: inspur123
|
|
# timeout: 5000ms
|
|
spring:
|
|
data:
|
|
redis:
|
|
host: 116.62.173.2
|
|
port: 6379
|
|
password: redis_cfF356
|
|
timeout: 5000ms
|
|
application:
|
|
name: NBA
|
|
datasource:
|
|
#mysql5.7.4配置
|
|
driver-class-name: com.mysql.jdbc.Driver
|
|
url: jdbc:mysql://localhost:3306/nba?useUnicode=true&characterEncoding=utf-8&useSSL=false
|
|
# url: jdbc:mysql://116.62.173.2:3306/nba?useUnicode=true&characterEncoding=utf-8&useSSL=false
|
|
# url: jdbc:mysql://154.36.154.211:9002/nba?useUnicode=true&characterEncoding=utf-8&useSSL=false
|
|
username: root
|
|
password: 123123321 #本地
|
|
# password: mysql_k2KzJj #阿里云杭州
|
|
# driver-class-name: com.mysql.cj.jdbc.Driver
|
|
# url: jdbc:mysql://103.244.88.91:3306/nba?useUnicode=true&characterEncoding=utf-8&useSSL=false
|
|
# username: nba
|
|
# password: d2mzG6w8277NpxFW
|
|
mail:
|
|
host: smtp.qq.com
|
|
port: 465
|
|
username: xdd9@vip.qq.com
|
|
password: qhcladjicfydbejj
|
|
default-encoding: UTF-8
|
|
properties:
|
|
mail.smtp.connectiontimeout: 5000 # 连接超时 5 秒
|
|
mail.smtp.timeout: 5000 # 读超时 5 秒
|
|
mail.smtp.writetimeout: 5000 # 写超时 5 秒
|
|
mail:
|
|
smtp:
|
|
auth: true
|
|
ssl:
|
|
enable: true
|
|
starttls:
|
|
enable: true
|
|
required: true
|
|
mybatis:
|
|
configuration:
|
|
map-underscore-to-camel-case: true
|
|
log-impl: org.apache.ibatis.logging.slf4j.Slf4jImpl
|
|
type-aliases-package: com.ping.study.pojo
|
|
mapper-locations: classpath:mapper/*.xml |