我有配置
@Override
public void configure(WebSecurity web) throws Exception {
web
.ignoring()
.antMatchers("/base/**");
}
我想包括所有路径的视图只是这条路径/base/includepath
。
我该怎么做?
我有配置
@Override
public void configure(WebSecurity web) throws Exception {
web
.ignoring()
.antMatchers("/base/**");
}
我想包括所有路径的视图只是这条路径/base/includepath
。
我该怎么做?