I have the configuration
@Override
public void configure(WebSecurity web) throws Exception {
web
.ignoring()
.antMatchers("/base/**");
}
And I want to include for view from all paths just this path /base/includepath
.
How I can do it?