springSecurity自定义用户登录页面时,常见的问题

springSecurity自定义用户登录页面时,常见的问题_第1张图片

 protected void configure(HttpSecurity http) throws Exception {
//        http.httpBasic().
        http.formLogin()
             .loginPage("/imooc-signIn.html")
            .and()
            .authorizeRequests()
            .anyRequest()
            .authenticated();
    }
没有给 imooc-signIn.html 设置权限,让其通过,否则自己也需要权限,一直跳,死循环了


你可能感兴趣的:(springSecurity)