websphere:不支持的配置属性:[permitAll] 使用 spring

发布于 2024-09-12 03:28:59 字数 276 浏览 4 评论 0原文

我收到以下错误...

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

撩心不撩汉 2024-09-19 03:28:59

您必须将 use-expressions 标记添加到安全 xml 中的 http 配置中,例如:

<http auto-config="true" use-expressions="true">
...
...
</http>

you have to add use-expressions tag to your http configuration in security xml for example:

<http auto-config="true" use-expressions="true">
...
...
</http>
客…行舟 2024-09-19 03:28:59

为了能够使用诸如 [permitAll] 之类的表达式,您必须添加 aa WebExpressionVoter 到您的 AccessDecisionManager

To be able to use expressions such as [permitAll] you have to add a a WebExpressionVoter to your AccessDecisionManager

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文