SpringBoot 配置靜態檔案快取

2021-09-19 17:46:24 字數 781 閱讀 8040

spring:

resources:

chain:

strategy:

content:

enabled: true

paths: /**

cache: true

compressed: false

enabled: true

cache:

cachecontrol:

cache-public: true

import org.springframework.beans.factory.annotation.autowired;

import org.springframework.web.bind.annotation.controlleradvice;

import org.springframework.web.bind.annotation.modelattribute;

import org.springframework.web.servlet.resource.resourceurlprovider;

@controlleradvice

public class controllerconfig

}

只能對通過controller進入的頁面生效,***直接跳轉的頁面無效(跳轉到頁面的url然後通過controller進入頁面是有效的,直接進入頁面是無效的)

SpringBoot靜態資源配置

1 springboot靜態資源配置,使用 webmvcautoconfiguration配置各種屬性。springboot 預設將 所有訪問對映到以下路徑 classpath static classpath public classpath resources classpath meta in...

SpringBoot 配置靜態資源對映

嵌入式servlet容器 先決知識 request.getsession getservletcontext getrealpath 這個很重要,將其稱為 docbase,即 文件基目錄 springboot 的 enableautoconfiguration 會啟用自動配置類 webmvcauto...

spring boot靜態資源路徑配置

spring mvc static path pattern resources static locations classpath meta inf resources classpath resources classpath static classpath public file the ...