首页
编程随笔
Java笔记
Html/Css/Js
Android
后端笔记
服务器搭建
BUG收集
Java异常
Android异常
在线工具
Json格式化
编码/解码
Epub在线编辑
登录
发布文章
个人文章
退出登录
首页
技术教程
BUG收集
在线工具
资源下载
登录
发布文章
退出登录
搜索
当前位置:
首页
-
博客
- 正文
关闭
spring boot启用gzip和缓存【seo优化】
更新时间:2021-10-16 10:18:25
阅读数:1052
发布者:落幕
今天使用https://gtmetrix.com 网站检测网站SEO优化情况时,发现网站提示有些项目链接 没有使用缓存策略,所以在网上收集了spring boot开启gzip压缩和缓存的方法 本次已spring boot版本为2.3.7.RELEASE设置为准 ###1、Spring Boot 启用Gzip压缩 #####(1) 需要在application.properties里启用压缩,并设置压缩支持的格式(默认支持text/html等,但不支持application/json) server: compression: enabled: true mime-types: application/json,application/xml,text/html,text/xml,text/plain #####(2)默认情况下,仅会压缩2048字节以上的内容 server: compression: min-response-size: 2048 ###2、Spring Boot开启缓存 spring: resources: chain: # 启用缓存 cache: true strategy: fixed: enabled: true version: v1.0.0 cache: cachecontrol: # 资源缓存时间,单位秒 max-age: 604800