如何激活Wildfly中的安全cookie?

时间:2015-07-01 13:58:04

标签: java servlets cookies wildfly wildfly-8

我正在尝试在Wildfly(版本8.2)中为我的Cookie添加安全标记。在the documentation page of the servlet container settings中,您会发现“servlet-container”的子代是:

  1. JS​​P
  2. 持久会话
  3. 会话cookie的
  4. 的WebSockets
  5. 但是我只有 jsp websockets 。如何访问会话cookie设置?如果我不能,如何将安全标志添加到我的cookie?

    UPDATE :我无法访问战争中的web.xml文件,只能访问wildfly配置文件。

2 个答案:

答案 0 :(得分:12)

通过jboss-cli尝试以下命令:

/subsystem=undertow/servlet-container=default/setting=session-cookie:add(http-only=true,secure=true)

或在您的standalone.xml中:

<servlet-container name="default">
    <session-cookie http-only="true" secure="true"/>
    <jsp-config/>
</servlet-container>

参考:http://wildscribe.github.io/Wildfly/8.2.0.Final/subsystem/undertow/servlet-container/setting/session-cookie/index.html

答案 1 :(得分:4)

通过将以下内容添加到您的web.xml,可以轻松配置安全标记及其安全表兄仅限http 标记。

    <session-config>
      <cookie-config>
        <http-only>true</http-only>
        <secure>true</secure>
      </cookie-config>
    </session-config>