Spring Boot project shows the Login page

前端 未结 3 1599
闹比i
闹比i 2020-12-29 19:51

I created a Spring boot project with the Spring initializer and only have the starter code so far.

The sample code

@Spring         


        
3条回答
  •  忘掉有多难
    2020-12-29 20:24

    if you really want to disable this login page you may disable your class where is:

    public class SecurityConfig extends WebSecurityConfigurerAdapter {
    

    this class is not necessary in my opinion you haven't create this class whose extends WebSecurityConfigurerAdapter

提交回复
热议问题