1

问题的标题不言自明。

我想要保护 home.xhtml 和干净的 URL /Home。

在春季安全配置中,我需要执行以下操作还是有其他方法?

<security:http auto-config="true" use-expressions="true">
    <security:intercept-url pattern="/home.xhtml" access="isAuthenticated()" />
    <security:intercept-url pattern="/Home" access="isAuthenticated()" />
</security:http>

谢谢

更新 :

实际上我的解决方案是要小心文件和 url 名称。我在 spring 安全文件中这样做是为了更加连贯:

    <security:intercept-url pattern="/Home*" access="isAuthenticated()" />   

这样可以保护两个 URL...实际上所有 URL 都以 Home 开头(不区分大小写)

4

0 回答 0