springBoot--web--http缓存机制测试

web--http缓存机制测试

  • 在配置文件中设置缓存

在配置文件中设置缓存

springBoot--web--http缓存机制测试_第1张图片


#1、spring.web:
#1、配置国际化的区域信息
#2、静态资源策略(开启、处理链、缓存)

#开启静态资源映射规则
spring.web.resources.add-mappings=true

#设置缓存
#spring.web.resources.cache.period=3600
#浏览器第一次请求服务器,服务器告诉浏览器此资源缓存7200秒,7200秒之内的所有此资源访问不用发给服务器
spring.web.resources.cache.cachecontrol.max-age=7200
#使用资源last-modified时间,来对服务器和浏览器的资源是否相同没有变化,相同返回304
spring.web.resources.cache.use-last-modified=true

springBoot--web--http缓存机制测试_第2张图片

你可能感兴趣的:(springboot,spring,boot,http,缓存)