【记录版】SpringBoot常见配置项及其配置文件(持续更新...)

主题:SpringBoot + Configuration

背景: SpringBoot作为整合框架,涉及到非常多的模块的配置,有时需要知道对应模块有哪些配置,做一些针对性的优化,但往往忘记其配置解析入口在哪。本篇仅做个人记录用,加强自身记忆与快速查找。

文章目录

  • 一、常见配置列表
    • 一、server. 服务器相关配置项
    • 二、spring.web类配置
    • 三、spring.mvc类配置
    • 四、spring.servlet.multipart类配置
    • 五、session会话配置
      • 一、spring.session全局控制
      • 二、spring.session.redis场景控制
    • 六、spring.datasource数据源配置
    • 七、spring.cache缓存配置
    • 八、spring.task.execution线程池配置
    • 九、spring.task.scheduling定时任务线程池配置
  • 二、冷门配置列表
    • 一、spring.quartz类配置
    • 二、spring.security类配置
    • 三、spring.webflux类配置
    • 四、spring.jta配置

一、常见配置列表

一、server. 服务器相关配置项

1)位置:org.springframework.boot.autoconfigure.web.ServerProperties
2)核心配置:port、address、servlet、reactive、tomcat、netty
3)顶层类代码示例:

@ConfigurationProperties(prefix = "server",ignoreUnknownFields = true
)
public class ServerProperties {private Integer port;private InetAddress address;@NestedConfigurationPropertyprivate final ErrorProperties error = new ErrorProperties();private ForwardHeadersStrategy forwardHeadersStrategy;private String serverHeader;private DataSize maxHttpHeaderSize = DataSize.ofKilobytes(8L);private Shutdown shutdown;@NestedConfigurationPropertyprivate Ssl ssl;@NestedConfigurationPropertyprivate final Compression compression;@NestedConfigurationPropertyprivate final Http2 http2;private final Servlet servlet;private final Reactive reactive;private final Tomcat tomcat;private final Jetty jetty;private final Netty netty;private final Undertow undertow;
}

二、spring.web类配置

1)位置:org.springframework.boot.autoconfigure.web.WebProperties
2)核心配置:resources
3)顶层类代码示例:

@ConfigurationProperties("spring.web")
public class WebProperties {private Locale locale;private LocaleResolver localeResolver;private final Resources resources;
}

三、spring.mvc类配置

1)位置:org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties
2)核心配置:staticPathPattern、publishRequestHandledEvents // 接口请求响应全局日志开关【追加】
3)已知使用位置:DispatcherServletAutoConfiguration、WebMvcAutoConfiguration
4)spring.mvc.formcontent.filter=boolean[d:true] //单独使用
5)顶层类代码示例:

@ConfigurationProperties(prefix = "spring.mvc"
)
public class WebMvcProperties {private DefaultMessageCodesResolver.Format messageCodesResolverFormat;private final Format format = new Format();private boolean dispatchTraceRequest = false;private boolean dispatchOptionsRequest = true;private boolean ignoreDefaultModelOnRedirect = true;private boolean publishRequestHandledEvents = true;private boolean throwExceptionIfNoHandlerFound = false;private boolean logRequestDetails;private boolean logResolvedException = false;private String staticPathPattern = "/**";private final Async async = new Async();private final Servlet servlet = new Servlet();private final View view = new View();private final Contentnegotiation contentnegotiation = new Contentnegotiation();private final Pathmatch pathmatch = new Pathmatch();
}

四、spring.servlet.multipart类配置

1)位置:org.springframework.boot.autoconfigure.web.servlet.MultipartProperties(等同@MultipartConfig)
2)核心配置:各文件指标【DataSize封装后可直接设置单位
3)顶层类代码示例:

@ConfigurationProperties(prefix = "spring.servlet.multipart",ignoreUnknownFields = false
)
public class MultipartProperties {private boolean enabled = true;private String location;private DataSize maxFileSize = DataSize.ofMegabytes(1L);private DataSize maxRequestSize = DataSize.ofMegabytes(10L);private DataSize fileSizeThreshold = DataSize.ofBytes(0L);private boolean resolveLazily = false;
}

五、session会话配置

一、spring.session全局控制

1)位置:org.springframework.boot.autoconfigure.session.SessionProperties
2)核心配置:storeType //存储类型; timeout //保存时间【秒】; Servlet //核心为Filter顺序
3)顶层类代码示例:

@ConfigurationProperties(prefix = "spring.session"
)
public class SessionProperties {private StoreType storeType;@DurationUnit(ChronoUnit.SECONDS)private Duration timeout;// 与spring-security配置类似,都是设置Filter的执行顺序private Servlet servlet = new Servlet();
}public enum StoreType {REDIS,MONGODB,JDBC,HAZELCAST,NONE;
}

二、spring.session.redis场景控制

1)位置:org.springframework.boot.autoconfigure.session.RedisSessionProperties
2)核心配置:namespace //命名空间,一定修改
3)JdbcSessionConfiguration、MongoSessionProperties、HazelcastSessionProperties同理
4)顶层类代码示例:

@ConfigurationProperties(prefix = "spring.session.redis"
)
public class RedisSessionProperties {// 每分钟执行一次private static final String DEFAULT_CLEANUP_CRON = "0 * * * * *";private String namespace = "spring:session";private FlushMode flushMode = FlushMode.ON_SAVE;private SaveMode saveMode = SaveMode.ON_SET_ATTRIBUTE;private ConfigureAction configureAction;private String cleanupCron;
}

六、spring.datasource数据源配置

1)位置:org.springframework.boot.autoconfigure.jdbc.DataSourceProperties
2)核心配置:username + password + url(可推出driverClassName)
3)url可加参数:useUnicode=true&characterEncoding=utf8&useSSL=false&serverTimezone=GMT%2B8&allowMultiQueries=true
4)type:数据源类型,如:com.alibaba.druid.pool.DruidDataSource
5)顶层类代码示例:

@ConfigurationProperties(prefix = "spring.datasource"
)
public class DataSourceProperties implements BeanClassLoaderAware, InitializingBean {private ClassLoader classLoader;private boolean generateUniqueName = true;private String name;private Class<? extends DataSource> type;private String driverClassName;private String url;private String username;private String password;private String jndiName;private EmbeddedDatabaseConnection embeddedDatabaseConnection; // 未知private Xa xa = new Xa();private String uniqueName;
}public static class Xa {private String dataSourceClassName;private Map<String, String> properties = new LinkedHashMap();
}

七、spring.cache缓存配置

1)位置:org.springframework.boot.autoconfigure.cache.CacheProperties
2)核心配置:cacheNames、redis
3)顶层类代码示例:

@ConfigurationProperties(prefix = "spring.cache"
)
public class CacheProperties {private CacheType type;private List<String> cacheNames = new ArrayList();private final Caffeine caffeine = new Caffeine();private final Couchbase couchbase = new Couchbase();private final EhCache ehcache = new EhCache();private final Infinispan infinispan = new Infinispan();private final JCache jcache = new JCache();private final Redis redis = new Redis();
}public enum CacheType {GENERIC,JCACHE,EHCACHE,HAZELCAST,INFINISPAN,COUCHBASE,REDIS,CACHE2K,CAFFEINE,SIMPLE,NONE;
}public static class Redis {private Duration timeToLive;private boolean cacheNullValues = true;private String keyPrefix;private boolean useKeyPrefix = true;private boolean enableStatistics;
}

八、spring.task.execution线程池配置

1)位置:org.springframework.boot.autoconfigure.task.TaskExecutionProperties
2)核心配置:pool // 线程池配置、threadNamePrefix // 线程名前缀
3)默认线程池Bean名:applicationTaskExecutor&taskExecutor
4)实现TaskExecutorCustomizer,并设置类似拒绝处理策略,可多个
5)顶层类代码示例:

@ConfigurationProperties("spring.task.execution")
public class TaskExecutionProperties {private final Pool pool = new Pool();private final Shutdown shutdown = new Shutdown();private String threadNamePrefix = "task-";
}public static class Pool {private int queueCapacity = Integer.MAX_VALUE;private int coreSize = 8;private int maxSize = Integer.MAX_VALUE;private boolean allowCoreThreadTimeout = true;private Duration keepAlive = Duration.ofSeconds(60L);
}

九、spring.task.scheduling定时任务线程池配置

1)位置:org.springframework.boot.autoconfigure.task.TaskSchedulingProperties
2)核心配置:pool // 仅配置线程数、threadNamePrefix // 线程名前缀
3)顶层类代码示例:

@ConfigurationProperties("spring.task.scheduling")
public class TaskSchedulingProperties {private final Pool pool = new Pool();private final Shutdown shutdown = new Shutdown();private String threadNamePrefix = "scheduling-";
}public static class Pool {private int size = 1;
}

二、冷门配置列表

一、spring.quartz类配置

1)位置:org.springframework.boot.autoconfigure.quartz.QuartzProperties
2)核心配置:未使用
3)顶层类代码示例:

@ConfigurationProperties("spring.quartz")
public class QuartzProperties {private JobStoreType jobStoreType;private String schedulerName;private boolean autoStartup;private Duration startupDelay;private boolean waitForJobsToCompleteOnShutdown;private boolean overwriteExistingJobs;private final Map<String, String> properties;private final Jdbc jdbc;
}

二、spring.security类配置

1)位置:org.springframework.boot.autoconfigure.security.SecurityProperties
2)核心配置:filter(优先级)、user(源码学习可用)
3)顶层类代码示例:

@ConfigurationProperties(prefix = "spring.security"
)
public class SecurityProperties {public static final int BASIC_AUTH_ORDER = 2147483642;public static final int IGNORED_ORDER = Integer.MIN_VALUE;public static final int DEFAULT_FILTER_ORDER = -100;private final Filter filter = new Filter();private final User user = new User();
}

三、spring.webflux类配置

1)位置:org.springframework.boot.autoconfigure.web.reactive.WebFluxProperties
2)核心配置:暂未使用
3)顶层类代码示例:

@ConfigurationProperties(prefix = "spring.webflux"
)
public class WebFluxProperties {private String basePath;private final Format format = new Format();private final Session session = new Session();private String staticPathPattern = "/**";
}

四、spring.jta配置

1)位置:org.springframework.boot.autoconfigure.transaction.jta.JtaProperties
2)顶层类代码示例:

@ConfigurationProperties(prefix = "spring.jta",ignoreUnknownFields = true
)
public class JtaProperties {private String logDir;private String transactionManagerId;
}

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

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

相关文章

ES 错误码

2xx状态码&#xff08;如200&#xff09;表示请求成功处理&#xff0c;并且不需要重试。 400状态码表示客户端发送了无效的请求&#xff0c;例如请求的语法有误或缺少必需的参数。在这种情况下&#xff0c;重试相同的请求很可能会导致相同的错误。因此&#xff0c;应该先检查并…

探索 Vuex 的世界:状态管理的新视角(下)

&#x1f90d; 前端开发工程师&#xff08;主业&#xff09;、技术博主&#xff08;副业&#xff09;、已过CET6 &#x1f368; 阿珊和她的猫_CSDN个人主页 &#x1f560; 牛客高级专题作者、在牛客打造高质量专栏《前端面试必备》 &#x1f35a; 蓝桥云课签约作者、已在蓝桥云…

go grpc-go 连接变动,导致全服 gRPC 重连 BUG 排查

问题描述 项目中遇到一个问题&#xff0c;每当有节点变更时&#xff0c;整个 gRPC 网络连接会重建 然后我对该问题做了下排查 最后发现是 gRPC Resolver 使用上的一个坑 问题代码 func (r *xxResolver) update(nodes []*registry.Node) {state : resolver.State{Addresses…

PyQt6 QColorDialog颜色对话框控件

锋哥原创的PyQt6视频教程&#xff1a; 2024版 PyQt6 Python桌面开发 视频教程(无废话版) 玩命更新中~_哔哩哔哩_bilibili2024版 PyQt6 Python桌面开发 视频教程(无废话版) 玩命更新中~共计50条视频&#xff0c;包括&#xff1a;2024版 PyQt6 Python桌面开发 视频教程(无废话版…

基于SSM框架的电脑测评系统论文

基于 SSM框架的电脑测评系统 摘要 随着信息技术在管理上越来越深入而广泛的应用&#xff0c;作为一个一般的用户都开始注重与自己的信息展示平台&#xff0c;实现基于SSM框架的电脑测评系统在技术上已成熟。本文介绍了基于SSM框架的电脑测评系统的开发全过程。通过分析用户对于…

大数据HCIE成神之路之数据预处理(3)——数值离散化

数值离散化 1.1 无监督连续变量的离散化 – 聚类划分1.1.1 实验任务1.1.1.1 实验背景1.1.1.2 实验目标1.1.1.3 实验数据解析 1.1.2 实验思路1.1.3 实验操作步骤1.1.4 结果验证 1.2 无监督连续变量的离散化 – 等宽划分1.2.1 实验任务1.2.1.1 实验背景1.2.1.2 实验目标1.2.1.3 实…

Open5GSUeRANSim2:对安装在同一个VM上的OPEN5GS和UERANSIM进行配置和抓取wireshark报文

参考链接&#xff1a; Configuring SCTP & NGAP with UERANSIM and Open5GS on a Single VM for the Open5GS & UERANSIM Series https://www.youtube.com/watch?vINgEX5L5fkE&listPLZqpS76PykwIoqMdUt6noAor7eJw83bbp&index5 Configuring RRC with UERANSI…

泛微e-cology XmlRpcServlet文件读取漏洞复现

漏洞介绍 泛微新一代移动办公平台e-cology不仅组织提供了一体化的协同工作平台,将组织事务逐渐实现全程电子化,改变传统纸质文件、实体签章的方式。泛微OA E-Cology 平台XmRpcServlet接口处存在任意文件读取漏洞&#xff0c;攻击者可通过该漏洞读取系统重要文件 (如数据库配置…

fastadmin表格右侧操作栏增加审核成功和审核失败按钮,点击提交ajax到后端

fastadmin表格右侧操作栏增加审核成功和审核失败按钮,点击提交ajax到后端 效果如下 js {field: operate, title: __(Operate), table: table, events

安装Neo4j

jdk1.8对应的neo4j的版本是3.5 自行下载3.5版本的zip文件 地址 解压添加环境变量 变量名&#xff1a;NEO4J_HOME 变量值&#xff1a;D:\neo4j-community-3.5.0 &#xff08;你自己的地址&#xff09; PATH添加&#xff1a; %NEO4J_HOME%\bin (如果是挨着的注意前后英…

Linux c++开发-11-Socket TCP编程简单案例

服务端&#xff1a; #include <stdio.h> #include <stdlib.h> #include <string.h> #include <unistd.h> #include <netinet/in.h> #include <sys/types.h>#include <errno.h>int main(void) {//1.socketint server_sock socket(A…

传统行业与人工智能融合:材料、化学、物理、生物的发展与未来展望

导言 传统行业如材料科学、化学、物理、生物学一直是科学领域的重要支柱。随着人工智能的快速发展&#xff0c;这些领域也在不断融合创新。本文将深入研究这些领域与人工智能的发展过程、遇到的问题及解决过程、未来的可用范围&#xff0c;以及在各国的应用和未来的研究趋势。 …

H-ui前端框架 —— layer.js

layer.js是由前端大牛贤心编写的web弹窗插件。 laye.js是个轻量级的网页弹出层组件..支持类型丰富的弹出层类型&#xff0c;如消息框、页面层、iframe层等&#xff0c;具有较好的兼容性和灵活性。 layer.js用法 1.引入layer.js文件。在HTML页面的头部引用layer.is文件&#x…

【uniapp】uniapp中本地存储sqlite数据库保姆级使用教程(附完整代码和注释)

数据库请求接口封装 uniapp中提供了plus.sqlite接口&#xff0c;在这里我们对常用的数据库请求操作进行了二次封装 这里的dbName、dbPath、recordsTable 可以根据你的需求自己命名 module.exports {/** * type {String} 数据库名称*/dbName: salary,/*** 数据库地址* type {…

【【迭代七次的CORDIC算法-Verilog实现】】

迭代七次的CORDIC算法-Verilog实现求解正弦余弦函数 COEDIC.v module CORDIC #(parameter DATA_WIDTH 4d8 , // we set data widthparameter PIPELINE 4d8)(input clk ,input …

在spring boot项目引入mybatis plus后的的案例实践

前景提要 1、项目背景 一个spring boot mybatis的项目&#xff0c;分页一直是PageHelper。 2、为什么要引入mybatis plus 1、简化单表的crud 2、对mybatis plus进行简单的设计&#xff0c;以满足现有系统的规范&#xff0c;方便开发 实践中出现的问题 1、版本不兼容 当…

前端:git介绍和使用

Git是一个分布式版本控制系统&#xff0c;用于跟踪和管理代码的变更。它是由Linux之父Linus Torvalds于2005年创建的&#xff0c;并被广泛用于软件开发、版本控制和协作开发。 Git的背景 在软件开发中&#xff0c;版本控制是非常重要的。传统的文件管理系统很难跟踪文件的变更…

深入理解 Nginx 工作原理:Master-Worker 架构与性能优化

目录 前言1 Nginx 的 Master-Worker 架构2 Worker 进程的工作原理3 Master-Worker 架构的优势3.1 热部署的便利性3.2 进程间独立性3.3 系统稳定性和容错性提升3.4 系统风险降低 4 Worker 数量的设置5 Worker 连接数&#xff08;worker_connections&#xff09;结语 前言 Nginx…

nodejs微信小程序+python+PHP购物商城网站-计算机毕业设计推荐

目 录 摘 要 I ABSTRACT II 目 录 II 第1章 绪论 1 1.1背景及意义 1 1.2 国内外研究概况 1 1.3 研究的内容 1 第2章 相关技术 3 2.1 nodejs简介 4 2.2 express框架介绍 6 2.4 MySQL数据库 4 第3章 系统分析 5 3.1 需求分析 5 3.2 系统可行性分析 5 3.2.1技术可行性&#xff1a;…

Ubuntu 常用命令之 tar 命令用法介绍

tar 命令在 Ubuntu 系统中是用来打包和解包文件的工具。tar 命令可以将多个文件或目录打包成一个 tar 文件&#xff0c;也可以将 tar 文件解包成原来的文件或目录。 tar 命令的常用参数如下 c&#xff1a;创建一个新的 tar 文件。x&#xff1a;从 tar 文件中提取文件。v&…