Answers for "spring security exclude image folder of login"

0

spring security exclude image folder of login

@Override
    public void configure(WebSecurity web) throws Exception {
        web
           .ignoring()
           .antMatchers("/resources/**", "/static/**", "/css/**", "/js/**", "/images/**");
    }
Posted by: Guest on February-22-2021

Code answers related to "spring security exclude image folder of login"

Browse Popular Code Answers by Language