环境 :
- Liferay 6.2 与 Jboss
我们正在尝试实现 httponly 和安全。
为此,我们对圆顶进行了一些更改,如下所示
在 Portal-ext.properties 中添加:
cookie.http.only.names.excludes=
和
在 ROOT.war/WEB-INF/web.xml 中添加了以下属性
<session-config>
<cookie-config>
<http-only>true</http-only>
<secure>true</secure>
</cookie-config>
</session-config>
我可以看到所有会话 cookie 都是 httponly 除了以LFR_SESSION_STATE_ 开头的
谁能建议我们如何处理这个问题。