获取HTTPS的JSP页面的服务器名称和端口号

获取HTTPS的JSP页面的服务器名称和端口号,第1张

获取HTTPS的JSP页面的服务器名称和端口号

HttpServletRequest.getServerName()
将给出服务器名称。但是,没有办法获得
https
端口。
443
如果要在方法中对其进行修复,则应使用默认值。

但是好的解决方案是将用作

Security TransportGuarantee
登录网址,以便服务器将
springSecurity/login
页面自动重定向到
https

将此条目添加到中

web.xml
,该条目将自动重定向
springSecurity/login
https

<security-constraint>    <web-resource-collection>        <web-resource-name>secure</web-resource-name>        <url-pattern>/springSecurity/login</url-pattern>    </web-resource-collection>    <user-data-constraint>        <transport-guarantee>CONFIDENTIAL</transport-guarantee>    </user-data-constraint></security-constraint>


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5641879.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-16
下一篇 2022-12-16

发表评论

登录后才能评论

评论列表(0条)

保存