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 即可解决其中数字后面跟的
- s代表秒
- m代表分
- h代表小时
- d代表天
https://www.leftso.com/article/486.html