Spring Security с весенней загрузки не может перенаправить после входа в систему - PullRequest
0 голосов
/ 15 мая 2018

Я столкнулся с проблемой при интеграции Spring Security с Spring Boot. После перезаписи WebSecurityConfigurerAdapter, я не могу перенаправить на успешную страницу (wlecome.ftl), когда я получил доступ к странице входа в систему. Это всегда перенаправление на страницу входа в систему(index.ftl) без журналов ошибок.

Есть что-нибудь, что я пропустил? Помощь всегда ценится, спасибо!

SecurityConfig.java

@Configuration
@EnableWebSecurity
@EnableGlobalMethodSecurity(prePostEnabled = true)
public class SecurityConfig extends WebSecurityConfigurerAdapter {
    @Autowired
    MyUserDetailsService detailsService;

    @Override
    protected void configure(HttpSecurity http) throws Exception {
        http.authorizeRequests()
                .antMatchers("/user/**").hasRole("USER")
                .anyRequest().fullyAuthenticated()
                .and()
                .formLogin()
                .loginPage("/login")
                .failureUrl("/login?error=true")
                .usernameParameter("username")
                .passwordParameter("password")
                .defaultSuccessUrl("/user/welcome")//add this but not work
                .permitAll()
                .and()
                .logout()
                .logoutUrl("/logout")
                .permitAll();
    }

    @Override
    public void configure(WebSecurity web) throws Exception {
        web.ignoring().antMatchers("/js/**", "/css/**", "/images/**", "/**/favicon.ico");
    }

    @Override
    public void configure(AuthenticationManagerBuilder auth) throws Exception {
        auth.inMemoryAuthentication().withUser("admin").password("admin").roles("USER");
    }

Login.Controller

@Controller
public class LoginController {

    @RequestMapping("/login")
    public String login(){
        return "index";
    }

    @RequestMapping("/user/welcome")
    public String welcome(){
        return "user/welcome";
    }

index.ftl (страница входа)

<!DOCTYPE html>
<#import "/spring.ftl" as spring />
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
</head>
<body>
<form action="<@spring.url '/login' />" method="post">
    username:<input type="text" name="username"><br>
    password:<input type="password" name="password"><br>
    <input type="submit" value="login">
</form>

</body>
</html>

welcome.ftl

<html>
  <head>

  </head>
<body>
  welcome
</body>
</html>

1 Ответ

0 голосов
/ 15 мая 2018

Вы не установили успешный URL-адрес входа, и вы куда-либо перенаправляете после успешного входа. Положите:

defaultSuccessUrl("/user/welcome")

после:

passwordParameter("...")

в вашей конфигурации безопасности.

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...