我有配置
@Override
public void configure(WebSecurity web) throws Exception {
web
.ignoring()
.antMatchers("/base/**");
}
我想要从所有路径中包含视图/base/includepath
。
我怎么做?
答案 0 :(得分:0)
如果要从身份验证中排除url(例如/ base / includepath),您只需要执行以下操作:
@Override
public void configure(WebSecurity web) throws Exception {
web.ignoring().antMatchers("/base/includepath");
}
我希望这就是你要找的东西。