gpt4 book ai didi

tomcat - Tomcat 的安全约束配置是强制性的吗?

转载 作者:行者123 更新时间:2023-11-28 21:44:06 27 4
gpt4 key购买 nike

为了在 Tomcat 下进行 SSL 配置测试,这都是强制性的吗?

下面这行摘自 website :

In order to do this for our test, take any application which has already been deployed successfully in Tomcat and first access it through http and https to see if it works fine. If yes, then open the web.xml of that application and just add this XML fragment before web-app ends i.e </web-app>:

<security-constraint>
<web-resource-collection>
<web-resource-name>securedapp</web-resource-name>
<url-pattern>/*</url-pattern>
</web-resource-collection>
<user-data-constraint>
<transport-guarantee>CONFIDENTIAL</transport-guarantee>
</user-data-constraint>
</security-constraint>

此配置是否必须在 web.xml 文件中执行??

最佳答案

不,没有必要。这意味着您的 Web 应用程序可通过 HTTPS 访问(而不可通过 HTTP 访问)。

如果省略 <transport-guarantee>CONFIDENTIAL</transport-guarantee>标记(或整个 <security-constraint> )您的应用程序将通过 HTTP 和 HTTPS 可用。如果你的web.xml包含 <transport-guarantee>CONFIDENTIAL</transport-guarantee>如果您尝试使用 HTTP,Tomcat 会自动将请求重定向到 SSL 端口。

请注意,默认的 Tomcat 配置不启用 SSL 连接器,您必须手动启用它。检查SSL Configuration HOW-TO了解详情。

关于tomcat - Tomcat 的安全约束配置是强制性的吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7790141/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com