spring boot使用application.yml的一些基础配置笔记yml配置
Posted Acmen-zym
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了spring boot使用application.yml的一些基础配置笔记yml配置相关的知识,希望对你有一定的参考价值。
server:
port: 443
ssl:
keyStoreType: PKCS12
key-store-password: ****** #密码
key-store: classpath:**********.pfx #证书文件
servlet:
session:
timeout: 3600 #session过期时间默认是30分钟
spring:
servlet:
multipart:
max-file-size: 20MB #文件上传限制
max-request-size: 200MB #请求的大小限制
application:
name: demo #应用名字
profiles:
active: dev # 激活生产环境
thymeleaf:
cache: false
mode: LEGACYhtml5
datasource:
url: jdbc:mysql://192.168.99.100:3306/zndz_xyt?useUnicode=true&characterEncoding=utf8&rewriteBatchedStatements=true
username: root
password: root
driver-class-name: com.mysql.jdbc.Driver #驱动类
dbcp2:
max-idle: 50 #最大空闲值.当经过一个高峰时间后,连接池可以慢慢将已经用不到的连接慢慢释放一部分
min-idle: 10 #最小空闲值.当空闲的连接数少于阀值时,连接池就会预申请去一些连接
initial-size: 5 #初始化大小
max-wait-millis: 10000 #最大超时时间
time-between-eviction-runs-millis: 30000 # 配置间隔多久才进行一次检测,检测需要关闭的空闲连接,单位是毫秒
pool-prepared-statements: true # 打开PSCache,在mysql5.5以下的版本中没有PSCache功能,建议关闭掉。
test-while-idle: true #如果空闲时间大于timeBetweenEvictionRunsMillis,执行validationQuery检测连接是否有效
test-on-borrow: true #申请连接时执行validationQuery检测连接是否有效,做了这个配置会降低性能。
test-on-return: true #归还连接时执行validationQuery检测连接是否有效,做了这个配置会降低性能
validation-query: select 'x' #用来检测连接是否有效的sql,如果这个没有配置则testOnBorrow和testOnReturn都不会生效
filters: stat,wall,log4j
jpa:
database: mysql #选择数据库,我用的mysql
show-sql: false #是否打印SQL语句到控制台
hibernate:
ddl-auto: update
naming:
implicit-strategy: org.hibernate.boot.model.naming.ImplicitNamingStrategyComponentPathImpl #隐式命名策略
properties:
hibernate:
dialect: org.hibernate.dialect.MySQL5Dialect
redis:
jedis:
pool:
max-active: 300 #最大连接数
max-wait: 10000 #超时时间单位是毫秒
rabbitmq:
port: 5672
host: 192.168.99.100
username: guest
password: guest
virtual-host: /
connection-timeout: 15000
#rabbitmq消费端配置
listener:
simple:
#并发数
concurrency: 5
#最大并发数
max-concurrency: 10
#签收模式:手工签收、自动签收
acknowledge-mode: manual
#限流,在此消费端同一时间只有一条消息消费
prefetch: 1
以上是关于spring boot使用application.yml的一些基础配置笔记yml配置的主要内容,如果未能解决你的问题,请参考以下文章
Spring boot jsp 和 application.yml
Spring Boot:尝试使用 EnvironmentPostProcessor 覆盖 application.properties
Spring Boot 配置文件: application.properties和application.yaml
Spring Boot2 系列教程理解Spring Boot 配置文件 application.properties