我在spring boot App中设置了以下属性:
spring.resources.chain.cache=true
spring.resources.cache-period=604800
spring.resources.chain.strategy.content.enabled=true
spring.resources.chain.strategy.content.paths=/**/resources/**
在我的Chrome浏览器网络中,对于某些资源,我看到添加了属性Cache-Control:
Cache-Control:max-age=604800
但它们没有从内存缓存加载,我仍然看到网络中的完整大小。状态仍然是200,而不是304.这是否意味着,它们没有被缓存?