websphere:不支持的配置属性:[permitAll] 使用 spring
我收到以下错误...
Unsupported configuration attributes: [permitAll]
添加时....
<sec:intercept-url pattern="/nonsecure/**" access="permitAll" />
我在使用 Spring 2.5 的 Websphere 上。
有人可以帮忙吗?
杰夫·波特
I get the following error...
Unsupported configuration attributes: [permitAll]
When adding ....
<sec:intercept-url pattern="/nonsecure/**" access="permitAll" />
I'm on Websphere with Spring 2.5.
Can anyone help?
Jeff Porter
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您必须将 use-expressions 标记添加到安全 xml 中的 http 配置中,例如:
you have to add use-expressions tag to your http configuration in security xml for example:
为了能够使用诸如 [permitAll] 之类的表达式,您必须添加 aa WebExpressionVoter 到您的 AccessDecisionManager
To be able to use expressions such as [permitAll] you have to add a a WebExpressionVoter to your AccessDecisionManager