【发布时间】:2013-04-25 10:04:05
【问题描述】:
我尝试在 Spring Security xml 中使用以下配置访问 CloudFoundry 上的应用程序
<intercept-url pattern="/signup*" access="permitAll" requires-channel="https" />
但它给了我错误这个网页有一个重定向循环
但是,当我将其更改为requires-channel="http" 时,我可以正常看到我的页面。在这两种情况下,我都在我的应用程序中使用了https。这是预期的行为吗?
【问题讨论】:
标签: spring-mvc spring-security cloud-foundry