spring security (4.0.1.Release) 默认为 https 协议设置 HSTS 主机,您可以Strict-Transport-Security: max-age=31536000 ;
在响应标头中看到(我使用 Firefox>Web Development>Network )。
但是当我查看 firefox 控制台时,我看到一个错误,上面写着:The site specified an invalid Strict-Transport-Security header.
我还在 spring config 中手动将 hsts 标头设置为:
<headers>
<hsts />
</headers>
生成相同的响应标头,FireFox 再次显示错误。
根据https://developer.mozilla.org/docs/Security/HTTP_Strict_Transport_Security标头必须正确!
任何意见 ?!