spring.thmyleaf.cache 屬性表示的是是否使用springboot靜態文件緩存,值爲true或者flase;默認爲truecss
當爲true時,當修改靜態文件(html、css、js)時須要重啓服務器才能夠有效html
當爲false時,當修改靜態文件(html、css、js)時只要在瀏覽器端刷新就能夠了spring
切記,不可再屬性後加「;」,否則springboot啓動會報錯(須要boolean類型,卻賦值爲String類型)瀏覽器
正確配置:緩存
application.properties中springboot
spring.thymeleaf.cache=false服務器
小知識點,後繼續補充app