Spring-Boot常见的应用属性配置集

深入之前先用好,用好之前先全面了解功能。

全面了解功能可以从官方文档的配置参数选项作为切入点。

Appendix A. Common application properties - Spring


# ===================================================================
# COMMON SPRING BOOT PROPERTIES
# 常见的Spring Boot属性集
#
# This sample file is provided as a guideline. Do NOT copy it in its
# entirety to your own application.               ^^^
# 提供配置样本文件作为指导(缺省值配置)。请勿将其全部复制到您自己的应用程序中。
# ===================================================================# ----------------------------------------
# CORE PROPERTIES
# 核心属性集
# ----------------------------------------# BANNER - 系统品牌的横幅广告
#banner:# Banner file encoding. 横幅文件的编码
#  charset: UTF-8# Banner file location. 横幅文件的位置
#  location: classpath:banner.txt# LOGGING
logging:# Location of the logging configuration file. 日志记录配置文件的位置
#  config:# Log file name. 日志文件名
#  file:# Log levels severity mapping. 日志级别严重性映射level: info# Location of the log file. 日志文件的位置
#  path:spring:# AOPaop:# Add @EnableAspectJAutoProxy.
#    auto: true# Whether subclass-based (CGLIB) proxies are to be created (true) as opposed to standard Java interface-based proxies (false). Defaults to "true" when using Spring Transaction Management, otherwise "false".# 代理目标类,基于子类的代理(CGLIB),基于接口的代理(Java)proxy-target-class: true# IDENTITY (ContextIdApplicationContextInitializer)
#  application:# Application index. 应用程序的索引
#      index:# Application name. 应用程序的名称
#      name:# ADMIN (SpringApplicationAdminJmxAutoConfiguration)
#      admin:# Enable admin features for the application.# 为应用程序启用管理员功能
#        enabled: false# JMX name of the application admin MBean.# 应用程序管理员MBean的JMX名称
#        jmx-name: org.springframework.boot:type=Admin,name=SpringApplication# AUTO-CONFIGURATION
#  autoconfigure:# Auto-configuration classes to exclude. 排除的自动配置类列表
#    exclude:# SPRING CACHE (CacheProperties)
#  cache:# Comma-separated list of cache names to create if supported by the underlying cache manager.
#    cache-names:# Cache type, auto-detected according to the environment by default. 缓存类型,默认情况下根据环境自动检测
#    type:# SPRING CONFIG - using environment property only (ConfigFileApplicationListener)
#  config:# Config file locations. 配置文件位置列表
#    location:# Config file name. 配置文件名
#    name: application# JMX
#  jmx:# JMX domain name. JMX的域名
#    default-domain:# Expose management beans to the JMX domain. 暴露管理beans到JMX域
#    enabled: true# MBeanServer bean name. 管理bean服务器的bean名称
#    server: mbeanServer# APPLICATION SETTINGS (SpringApplication)main:# Mode used to display the banner when the application runs.# 应用程序运行时用于显示横幅的模式banner-mode: log# Sources (class name, package name or XML resource location) to include in the ApplicationContext.# 包含在应用上下文中的bean资源对象集(类名,包名或XML资源位置)
#    sources:# FILE ENCODING (FileEncodingApplicationListener)# Expected character encoding the application must use.# 应用程序必须使用的预期的字符编码mandatory-file-encoding: UTF-8# PID FILE (ApplicationPidFileWriter)
#  pid:# Fail if ApplicationPidFileWriter is used but it cannot write the PID file.# 如果使用ApplicationPidFileWriter但无法写入PID文件,则失败
#    fail-on-write-error:# Location of the PID file to write (if ApplicationPidFileWriter is used).# 要写入的PID文件的位置(如果使用了ApplicationPidFileWriter)
#    file:# PROFILES
#  profiles:# Comma-separated list (or list if using YAML) of active profiles.# 活动的配置文件集的逗号分隔列表
#    active:# Unconditionally activate the specified comma separated profiles (or list of profiles if using YAML).# 无条件激活指定的逗号分隔的配置文件集(对所有环境都是相同配置值的必须配置)
#    include:http:# HTTP message conversion
#    converters:# Preferred JSON mapper to use for HTTP message conversion.# 用于HTTP消息转换的首选JSON映射器
#      preferred-json-mapper: jackson# HTTP encoding (HttpEncodingProperties)
#    encoding:# Charset of HTTP requests and responses. Added to the "Content-Type" header if not set explicitly.# HTTP请求和响应的字符集。如果未明确设置,则添加到"Content-Type"头信息中
#      charset: UTF-8# Enable http encoding support. 启用HTTP编码支持
#      enabled: true# MULTIPART (MultipartProperties) 文件上传multipart:# Enable support of multi-part uploads.# 启用对文件多部分上传的支持enabled: true# Max file size. 最大文件大小
#      max-file-size: 1MB# Max request size. 最大请求大小
#      max-request-size: 10MB# Whether to resolve the multipart request lazily at the time of file or parameter access.# 在文件或参数访问时是否延迟解析多部分请求resolve-lazily: true# JACKSON (JacksonProperties)jackson:# Date format string or a fully-qualified date format class name.# 日期格式字符串或完全限定日期格式类名称date-format: yyyy-MM-dd HH:mm:ss# Controls the inclusion of properties during serialization.# 控制序列化期间属性的包含default-property-inclusion: always# Joda date time format string. If not configured, "date-format" will be used as a fallback if it is configured with a format string.
#    joda-date-time-format:# One of the constants on Jackson's PropertyNamingStrategy. Can also be a fully-qualified class name of a PropertyNamingStrategy subclass.# Jackson的属性名称策略接口的常量之一,也可以是其子类的完全限定类名称property-naming-strategy: LOWER_CAMEL_CASE# SPRING MVC (WebMvcProperties)mvc:async:# Amount of time (in milliseconds) before asynchronous request handling times out.# 异步请求处理超时之前的时间(毫秒)request-timeout: 1000# Date format to use.# 要使用的日期格式date-format: yyyy-MM-ddservlet:# Load on startup priority of the Spring Web Services servlet.# 加载servlet的启动优先级load-on-startup: 1# ----------------------------------------
# WEB PROPERTIES
# Web环境属性集
# ----------------------------------------# EMBEDDED SERVER CONFIGURATION (ServerProperties)
server:compression:# If response compression is enabled. 启用响应压缩enabled: true# Minimum response size that is required for compression to be performed.# 执行压缩所需的最小响应大小(2KB)
#    min-response-size: 2048# Time in milliseconds that connectors will wait for another HTTP request before closing the connection. When not set, the connector's container-specific default will be used. Use a value of -1 to indicate no (i.e. infinite) timeout.# 连接器在关闭连接之前将等待另一个HTTP请求的时间(毫秒)。未设置时,将使用连接器特定于容器的默认值。connection-timeout: 600000# Context path of the application. 应用程序的上下文路径
#  context-path:# Display name of the application. 应用程序的显示名称
#  display-name: application
#  error:# Path of the error controller. 错误控制器的路径
#    path: /error# Server HTTP port. 服务器HTTP请求端口
#  port: 8080# Path of the main dispatcher servlet.# 主调度程序的路径
#  servlet-path: /session:cookie:# Maximum age of the session cookie in seconds.# 会话cookie的最长期限(秒)max-age: 1800# Session timeout in seconds. 会话超时(秒)timeout: 1800
#  ssl:# Enable SSL support. 启用SSL支持
#    enabled: true# SSL protocol to use. 要使用的SSL协议
#    protocol: TLStomcat:# Maximum queue length for incoming connection requests when all possible request processing threads are in use.# 当所有可能的请求处理线程都在使用时,进来的连接请求的最大队列长度accept-count: 1accesslog:# Buffer output such that it is only flushed periodically.# 缓冲输出,使其仅定期刷新
#      buffered: true# Directory in which log files are created. Can be relative to the tomcat base dir or absolute.# 在其中创建日志文件的目录,可以是tomcat基本目录的相对目录
#      directory: logs# Enable access log. 启用访问日志enabled: true# Date format to place in log file name. 要放在日志文件名中的日期格式file-date-format: .yyyy-MM-dd.HH# Format pattern for access logs. 访问日志的格式模式
#      pattern: common# Log file name prefix. 日志文件名前缀prefix: tomcat_access# Defer inclusion of the date stamp in the file name until rotate time.# 将日期时间戳包含在文件名中,直到轮换时间为止
#      rename-on-rotate: false# Set request attributes for IP address, Hostname, protocol and port used for the request.# 设置用于请求的IP地址,主机名,协议和端口的请求属性
#      request-attributes-enabled: false# Enable access log rotation. 启用访问日志循环输出
#      rotate: true# Log file name suffix. 日志文件名后缀
#      suffix: .log# Delay in seconds between the invocation of backgroundProcess methods.# 调用后台处理方法之间的延迟(秒)
#    background-processor-delay: 10# Maximum number of connections that the server will accept and process at any given time.# 服务器在任何给定时间接受和处理的最大连接数max-connections: 200# Maximum size in bytes of the HTTP post content.# HTTP发布内容的最大字节大小(2MB)
#    max-http-post-size: 2097152# Maximum amount of worker threads. 最大工作者线程数
#    max-threads: 200# Minimum amount of worker threads. 最小工作者线程数
#    min-spare-threads: 10# Character encoding to use to decode the URI.# 用于解码URI的字符编码
#    uri-encoding: UTF-8# SPRING SESSION (SessionProperties)# ----------------------------------------
# SECURITY PROPERTIES
# 安全属性集
# ----------------------------------------# SECURITY (SecurityProperties)
security:basic:# Enable basic authentication. 启用基本的身份验证enabled: true# Comma-separated list of paths to secure. 以逗号分隔的安全路径列表path: /**# Enable Cross Site Request Forgery support. 启用跨站点请求伪造支持enable-csrf: false# Security filter chain order. 安全筛选器链的顺序filter-order: 0# Security filter chain dispatcher types. 安全筛选器链的调度程序类型filter-dispatcher-types: ASYNC, FORWARD, INCLUDE, REQUEST# Comma-separated list of paths to exclude from the default secured paths.ignored:# ----------------------------------------
# DATA PROPERTIES
# 数据属性集
# ----------------------------------------# DAO (PersistenceExceptionTranslationAutoConfiguration)# ELASTICSEARCH (ElasticsearchProperties)# DATASOURCE (DataSourceAutoConfiguration)# REDIS (RedisProperties)# TRANSACTION (TransactionProperties)# ----------------------------------------
# INTEGRATION PROPERTIES
# 功能集成属性集
# ----------------------------------------# ACTIVEMQ (ActiveMQProperties)# SPRING BATCH (BatchProperties)# APACHE KAFKA (KafkaProperties)# ----------------------------------------
# ACTUATOR PROPERTIES
# 执行器属性集
# ----------------------------------------# ENDPOINTS (AbstractEndpoint subclasses)
endpoints:# Enable endpoints. 启用端点enabled: trueactuator:# Enable the endpoint.enabled: true# Endpoint URL path. 端点URL路径
#    path:
#  autoconfig:
#  beans:
#  configprops:
#  docs:
#  dump:
#  env:
#  health:
#  heapdump:
#  info:
#  jolokia:
#  logfile:
#  loggers:
#  mappings:
#  metrics:
#  shutdown:
#  trace:# JMX ENDPOINT (EndpointMBeanExportProperties)jmx:# JMX domain name. Initialized with the value of 'spring.jmx.default-domain' if set.domain:# Enable JMX export of all endpoints. 启用所有端点的JMX导出enabled: true# JOLOKIA (JolokiaProperties)# MANAGEMENT HTTP SERVER (ManagementServerProperties)
management:# Management endpoint HTTP port. Uses the same port as the application by default. Configure a different port to use management-specific SSL.# 管理端点的HTTP端口。默认情况下,使用与应用程序相同的端口。port:security:# Accessing sensitive endpoints# Enable security. 启用安全性enabled: false# HEALTH INDICATORShealth:# Enable default health indicators. 启用默认的运行状况指示器defaults:enabled: true# Enable disk space health check.diskspace:enabled: true# TRACING (TraceProperties)trace:# Items to be included in the trace. 要包含在追踪中的项目include: request-headers,response-headers,cookies,errors# METRICS EXPORT (MetricExportProperties)# ----------------------------------------
# DEVTOOLS PROPERTIES
# 开发工具箱属性集
# ----------------------------------------# DEVTOOLS (DevToolsProperties)# ----------------------------------------
# TESTING PROPERTIES
# 测试属性
# ----------------------------------------

祝大家玩得开心!ˇˍˇ

简放,杭州

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/703833.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

CPU 算力分配(C语言)

题目来自于博主算法大师的专栏:最新华为OD机试C卷AB卷OJ(CJavaJSPy) https://blog.csdn.net/banxia_frontend/category_12225173.html 题目描述 现有两组服务器A和B,每组有多个算力不同的CPU,其中 A[i] 是 A 组第 i …

【机器学习学习脉络】

机器学习学习脉络 基础知识 数学基础 线性代数概率论与数理统计微积分最优化理论 编程基础 Python编程语言数据结构与算法软件工程原则 计算机科学基础 操作系统网络通信数据库系统 机器学习概论 定义与发展历程机器学习的主要任务和应用领域基本术语和概念 监督学习 线…

15:00面试,15:06就出来了,问的问题过于变态了。。。

我从一家小公司转投到另一家公司,期待着新的工作环境和机会。然而,新公司的加班文化让我有些始料未及。虽然薪资相对较高,但长时间的工作和缺乏休息使我身心俱疲。 就在我逐渐适应这种高强度的工作节奏时,公司突然宣布了一则令人…

蓝桥杯-最小砝码

知识点&#xff1a;本题主要考察任何一个物体都可以用 3进制表示。 #include <iostream> #include<cmath> using namespace std; //知识点:任何一个物体都可以用 3进制表示 int main() { int n; cin >> n; int sum 0; for (int i 0;; i)…

多表联合分页查询(一)----数据库与返回实体类准备

目录 一、数据库表准备1.文章表2.用户表3.用户详细信息表4.用户点赞表5.用户评论表 二、需求描述三、返回实体类 一、数据库表准备 1.文章表 CREATE TABLE yan_article (id bigint(20) NOT NULL,summary varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci DEFAULT NU…

vue2实现无感刷新token

&#x1f3ac; 江城开朗的豌豆&#xff1a;个人主页 &#x1f525; 个人专栏 :《 VUE 》 《 javaScript 》 &#x1f4dd; 个人网站 :《 江城开朗的豌豆&#x1fadb; 》 ⛺️ 生活的理想&#xff0c;就是为了理想的生活 ! 目录 &#x1f4d8; 引言&#xff1a; &#x1f4…

【Vue3】学习watch监视:深入了解Vue3响应式系统的核心功能(上)

&#x1f497;&#x1f497;&#x1f497;欢迎来到我的博客&#xff0c;你将找到有关如何使用技术解决问题的文章&#xff0c;也会找到某个技术的学习路线。无论你是何种职业&#xff0c;我都希望我的博客对你有所帮助。最后不要忘记订阅我的博客以获取最新文章&#xff0c;也欢…

携程token算法分析

声明 本文以教学为基准、本文提供的可操作性不得用于任何商业用途和违法违规场景。 本人对任何原因在使用本人中提供的代码和策略时可能对用户自己或他人造成的任何形式的损失和伤害不承担责任。 如有侵权,请联系我进行删除。 这里只是我分析的分析过程,以及一些重要点的记录…

[云原生] k8s中kubectl陈述式资源管理

一、管理k8s核心资源的两种基本方法 陈述式资源管理方法 --主要依赖命令行工具kubectl进行管理 优点 可以满足90%以上的使用场景 对资源的增、删、查操作比较容易 缺点 命令冗长&#xff0c;复杂&#xff0c;难以记忆 特定场景下&#xff0c;无法实现管理需求 对资源的修改…

每日汇评:英镑可能走高,而1.2650支撑位保持不变

英镑/美元上周收于正值区域&#xff1b; 1.2650是该货币对的关键近期支撑位&#xff1b; 如果市场情绪恶化&#xff0c;该货币对的上涨空间可能仍然有限&#xff1b; 英镑/美元利用围绕美元的广泛抛售压力&#xff0c;自 1 月初以来首次录得周涨幅。 周一早盘该货币对稳定在 1.…

TF-A之供应链威胁模型分析

目录 一、简介 二、TF-A 概述 2.1、TF-A 存储库 2.2、外部依赖 2.3、附加二进制文件 2.4、TF-A工具链 2.5、基础设施 三、TF-A

Premiere企业发展历程公司历史回顾视频制作pr时间线模板

企业发展历程公司历史回顾视频制作PR时间线模板mogrt。 项目特点&#xff1a;色彩控件&#xff0c;适用于任何字体&#xff0c;包含视频帮助&#xff0c;适用于Premiere Pro 2021及以上版本。 更多PR资源下载&#xff1a;https://prmuban.com/37916.html

java环境搭建

1.jdk下载安装 下载 https://www.oracle.com/java/technologies/downloads/ jdk21 安装完成 java.exe是执行程序 javac.exe是编译工具 配置JAVA_HOME 环境变量 java环境变量设为变量JAVA_HOME 加上bin,以后只用更改JAVA_HOME地址即可 2.idea安装 下载 https://www.jet…

UDP套接字使用connect函数

在Linux环境下&#xff0c;UDP套接字可以使用connect函数。虽然UDP是无连接的协议&#xff0c;但是使用connect函数可以为UDP套接字设置一个默认的目标地址。 这样做有几个好处&#xff1a; 减少发送数据时的参数&#xff1a;当你使用connect函数为UDP套接字设置了一个目标地址…

Python 开发转 Java 简易路线 - 完结

有了 Python 开发基础&#xff0c;Java 的内容都可以快速过一遍&#xff0c;复杂地方跟着写一遍。 个人博客&#xff08;可参考&#xff09;&#xff1a;https://itnxd.eu.org/ 一、基础 1、Java 基础&#xff1a;尚硅谷 - Java基础 全部快速过一遍&#xff0c; 2、数据库&a…

动态规划(算法竞赛、蓝桥杯)--最详细的01背包DP问题滚动数组优化

1、B站视频链接&#xff1a;E08【模板】背包DP 01背包_哔哩哔哩_bilibili 题目链接&#xff1a;[USACO07DEC] Charm Bracelet S - 洛谷 #include <bits/stdc.h> using namespace std; const int N3410,M13000; int n,m; int d[N],w[N],f[N][M];//价值、体积、状态数组 …

Linux 软链接与硬链接

目录 创建软链接 创建硬链接 删除软链接 软链与硬链区别 创建软链接 软链接是一个指向另一个文件或目录的引用&#xff0c;类似于Windows系统中的快捷方式。 ln -s [目标文件路径] [链接文件名] 例如&#xff0c;要在当前目录下创建一个名为link_file的软链接&#xff0c…

Odoo系统安装部署并结合内网穿透实现固定域名访问本地ERP系统

文章目录 前言1. 下载安装Odoo&#xff1a;2. 实现公网访问Odoo本地系统&#xff1a;3. 固定域名访问Odoo本地系统 前言 Odoo是全球流行的开源企业管理套件&#xff0c;是一个一站式全功能ERP及电商平台。 开源性质&#xff1a;Odoo是一个开源的ERP软件&#xff0c;这意味着企…

AP5219 DC-DC降压恒流芯片 2.5A 全亮 半亮 摩托电动车灯IC

产品描述 AP5219 是一款 PWM工作模式, 高效率、外 围简单、内置功率管&#xff0c;适用于 5V&#xff5e;100V 输入的高 精度降压 LED 恒流驱动芯片。输出最大功率可达 25W&#xff0c;最大电流 2.5A。 AP5219 可实现全亮/半亮功能切换&#xff0c;通过 MODE 切换&#x…

Docker基础(二)

文章目录 1. 可视化工具2. Docker镜像详解2.1 镜像commit 3. 容器数据卷3.1 使用数据卷3.2 安装mysql实操案例3.3 Dockerfile挂载数据卷3.4 具名挂载和匿名挂载3.5 数据卷容器 4. DockerFile4.1 构建一个自己的centos4.2 编写DockerFile步骤 5. 发布镜像5.1 共有仓库5.2 私有仓…