spring security中的default-target-url https
我们在我们的系统中使用 Spring Security,并且我们的服务器使用 https 方案。
然而应用程序运行在http而不是https上,所以服务器是apache, 是 https 处理程序。而应用程序在防火墙后面的 http 上运行。
工作代码:
<form-login login-page="/Login.html"
authentication-failure-url="https://www.ourapp.com/FailureLogin.jsp"
always-use-default-target="false"
default-target-url="https://www.ourapp.com/SuccessLogin.jsp"/>
<form-login login-page="/Login.html"
authentication-failure-url="https://www.ourapp.com/FailureLogin.jsp"
always-use-default-target="false"
default-target-url="https://www.ourapp.com/SuccessLogin.jsp"/>
不工作代码:
<form-login login-page="/Login.html"
authentication-failure-url="/FailureLogin.jsp"
always-use-default-target="false"
default-target-url="/SuccessLogin.jsp"/>
<form-login login-page="/Login.html"
authentication-failure-url="/FailureLogin.jsp"
always-use-default-target="false"
default-target-url="/SuccessLogin.jsp"/>
有什么办法可以提及: 重定向到以 /SuccessLogin.jsp 结尾但使用 https 协议的 URL?
作为参考,问题交叉发布@ Code ranch PS:我可以 TargetUrlResolver 帮助我进行配置吗?
we are using spring security into our systems and our server is using the https scheme.
However the application is running on http not https, so the server, being apache,
is the https handler. whereas the application is running on http behind a firewall.
Working code:
<form-login login-page="/Login.html"
authentication-failure-url="https://www.ourapp.com/FailureLogin.jsp"
always-use-default-target="false"
default-target-url="https://www.ourapp.com/SuccessLogin.jsp"/>
<form-login login-page="/Login.html"
authentication-failure-url="https://www.ourapp.com/FailureLogin.jsp"
always-use-default-target="false"
default-target-url="https://www.ourapp.com/SuccessLogin.jsp"/>
Not working code:
<form-login login-page="/Login.html"
authentication-failure-url="/FailureLogin.jsp"
always-use-default-target="false"
default-target-url="/SuccessLogin.jsp"/>
<form-login login-page="/Login.html"
authentication-failure-url="/FailureLogin.jsp"
always-use-default-target="false"
default-target-url="/SuccessLogin.jsp"/>
is there any way to mention :
Redirect to Url ending with /SuccessLogin.jsp but using https protocol ?
For reference, question is cross posted @ Code ranch
PS: I can TargetUrlResolver help me in configurations ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用
requires-channel="https"
如果使用的非标准端口提供
port-mappings
use
requires-channel="https"
If non standard ports in use provide
port-mappings