简体   繁体   English

登录后无法重定向spring boot的spring security

[英]spring security with spring boot cant redirect after login

I encountered a problem when integrating spring security with spring boot.After Overwriting the WebSecurityConfigurerAdapter, I can't redirect to the successful page(wlecome.ftl) when I've accessed the login page.It's aways redirect to the login page(index.ftl) without error logs.我在将spring security和spring boot集成时遇到了一个问题。在覆盖WebSecurityConfigurerAdapter之后,当我访问登录页面时,我无法重定向到成功的页面(wlecome.ftl)。 ftl) 没有错误日志。

Is there anyting I missed?Help is aways appreciated,thanks!有什么我错过的吗?感谢帮助,谢谢!

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(the login page) 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欢迎.ftl

<html>
  <head>

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

You didn't set the successful login url and you anywhere redirect after login success.您没有设置成功的登录网址,登录成功后您在任何地方重定向。 Put the:放在:

defaultSuccessUrl("/user/welcome")

after the:之后:

passwordParameter("...")

in your security configuration.在您的安全配置中。

尝试这个

.defaultSuccessUrl("/user/welcome",true)

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM