Value '4320' is not valid duration
Checks Spring boot application .properties configuration files. Highlights unresolved and deprecated configuration keys and invalid values .Works only for Spring Boot 1.2 or higher。
Spring Boot application.properties配置文件报错以上信息是在我配置缓存文件的时间遇到的
spring.resources.cache.cachecontrol.max-age=4320
改为:
spring.resources.cache.cachecontrol.max-age=4320s
即可解决
其中数字后面跟的
http://blog.xqlee.com/article/486.html