0

我有配置

@Override
public void configure(WebSecurity web) throws Exception {
        web
            .ignoring()
            .antMatchers("/base/**");
}

我想包括所有路径的视图只是这条路径/base/includepath

我该怎么做?

4

1 回答 1

0

如果您想从身份验证中排除 url(例如 /base/includepath),您只需执行如下操作:

@Override
public void configure(WebSecurity web) throws Exception {
    web.ignoring().antMatchers("/base/includepath");
} 

我希望这就是你要找的。

于 2017-10-22T07:18:42.050 回答