Web.xml中
<security-constraint>
<web-resource-collection>
<web-resource-name>*</web-resource-name>
<url-pattern>/*</url-pattern>
</web-resource-collection>
<user-data-constraint>
<transport-guarantee>NONE</transport-guarantee>
</user-data-constraint>
</security-constraint>
此处<transport-guarantee>
设置为NONE,我将http重定向到standalone.xml中的https。因此,由于值为NONE,因此不会重定向到https。但是,我仍然可以访问http中的一些部分(就像我可以登录)。然而,有一些页面,如果我通过http我的会话登出。但是当我使用https时,这些页面上没有这样的问题。请解释一下我的原因是什么?我知道我可能缺少一些SSL或其他任何概念。