springsecurity自定义登录页面

1.protected void configure(HttpSecurity http) throws Exception {
        http
            .authorizeRequests()
                .antMatchers("/js/**","/css/**").permitAll()
                .anyRequest().authenticated()
                .and()
            .formLogin().loginPage("/login.html").loginProcessingUrl("/login").permitAll()
            .and()
            .logout().logoutUrl("/logout").logoutSuccessUrl("/login.html").invalidateHttpSession(true).deleteCookies("JSESSIONID")
            .and()
            .csrf().disable();
    }

2.src/main/webapp/login.html





登陆



    用户名:

    密码:

    


你可能感兴趣的:(权限)