我收到以下错误...

Unsupported configuration attributes: [permitAll]

当添加....
<sec:intercept-url pattern="/nonsecure/**" access="permitAll" />

我在Spring 2.5上使用Websphere。

有人可以帮忙吗?

杰夫·波特

最佳答案

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

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

10-05 23:08