❃博主首页 :
「码到三十五」
,同名公众号 :「码到三十五」,wx号 : 「liwu0213」
☠博主专栏 :
<mysql高手>
<elasticsearch高手>
<源码解读>
<java核心>
<面试攻关>
♝博主的话 :
搬的每块砖,皆为峰峦之基;公众号搜索「码到三十五」关注这个爱发技术干货的coder,一起筑基
优化Spring Boot,Spring Cloud 应用程序中Tomcat的配置有助于提高性能和资源利用率。
文章目录
以下是需要重点优化的一些关键领域:
1.线程池配置
调整Spring Boot,Spring Cloud 应用中Tomcat可用的线程数可以帮助有效地处理更多并发请求。
# application.yml
server:
tomcat:
threads:
max: 200 #池中最大线程数
min-spare: 10 #最小空闲线程数
2. 连接配置
调整Spring Boot,Spring Cloud 应用中Tomcat连接设置可以改善 Tomcat 处理传入连接的方式。
# application.yml
server:
tomcat:
max-connections: 10000 # 可处理的最大连接数
accept-count: 1000 # 传入连接请求的最大队列长度
3. 压缩
启用压缩可以减少通过网络发送的数据量,从而缩短响应时间。
# application.yml
server:
compression:
enabled: true
mime-types: application/json,application/xml,text/html,text/xml,text/plain
min-response-size: 1024
4. Keep-Alive 配置
调整Spring Boot,Spring Cloud 应用中Tomcat保持活动设置可以帮助更有效地管理连接。
# application.yml
server:
connection-timeout: 20000 # 客户端连接超时时间(以毫秒为单位)
tomcat:
keep-alive-timeout: 10000 # 保持连接超时时间(以毫秒为单位)
max-keep-alive-requests: 100 # 可通过保持连接发送的最大请求
5. 访问日志
配置访问日志可以帮助监控和分析请求模式。
# application.yml
server:
tomcat:
accesslog:
enabled: true
directory: /var/log/tomcat
prefix: access_log
suffix: .txt
6. JVM 选项
JVM配置垃圾收集和内存管理的最佳设置。
# JVM 选项
-Xms512m # 初始堆大小
-Xmx2048m # 最大堆大小
- XX :+UseG1GC # 使用 G1 垃圾收集器
7. Spring Boot配置
Spring Boot,Spring Cloud应用程序警用优化。例如,禁用不必要的自动配置可以节省资源。
# application.yml
spring:
autoconfigure:
exclude: org.springframework.boot.autoconfigure.jms.JmsAutoConfiguration
8.安全设置
确保您的应用程序是安全的,以防止资源滥用和攻击。
# application.yml
server:
ssl:
enabled: true
key-store: classpath:keystore.jks
key-store-password: password
key-password: password
综合配置
以下是结合上述几种设置的综合配置:
server:
port: 8080
connection-timeout: 20000
tomcat:
max-connections: 10000
accept-count: 1000
threads:
max: 200
min-spare: 10
keep-alive-timeout: 10000
max-keep-alive-requests: 100
compression:
enabled: true
mime-types: application/json,application/xml,text/html,text/xml,text/plain
min-response-size: 1024
accesslog:
enabled: true
directory: /var/log/tomcat
prefix: access_log
suffix: .txt
spring:
autoconfigure:
exclude: org.springframework.boot.autoconfigure.jms.JmsAutoConfiguration