我已经在 Spring JSF Web 应用程序中使用 JBoss6 配置了 https,并且它适用于整个站点,但我只需要为特定文件夹和文件获取 https。在我的 web.xml 中,我以这种方式配置了它
文件夹特定代码块,但在访问页面后有效
<security-constraint>
<web-resource-collection>
<web-resource-name>secured folder</web-resource-name>
<url-pattern>/myfolder/*</url-pattern>
</web-resource-collection>
<user-data-constraint>
<transport-guarantee>CONFIDENTIAL</transport-guarantee>
</user-data-constraint>
</security-constraint>
如果我仅在没有文件夹特定代码块的情况下放置以下代码并且它为整个站点启用 https,则以下代码有效。
<security-constraint>
<web-resource-collection>
<web-resource-name>Protected Area, so redirect to HTTPS</web-resource-name>
<url-pattern>/*</url-pattern>
</web-resource-collection>
<user-data-constraint>
<transport-guarantee>CONFIDENTIAL</transport-guarantee>
</user-data-constraint>
</security-constraint>
为了实现这一目标,我还缺少其他什么吗?