如何配置springbootstarter安全性

eiee3dmh  于 2021-07-23  发布在  Java
关注(0)|答案(1)|浏览(364)

如何根据自己的需要配置SpringBootStarter安全性?
(我和Kotlin一起用Spring)
我的意思是,我有这个配置文件,但似乎spring容器忽略了。

import org.springframework.context.annotation.Bean  
import org.springframework.context.annotation.Configuration  
import org.springframework.security.config.annotation.web.builders.HttpSecurity  
import org.springframework.security.config.annotation.web.configuration.EnableWebSecurity  
import org.springframework.security.config.annotation.web.configuration.WebSecurityConfigurerAdapter  
import org.springframework.security.crypto.bcrypt.BCryptPasswordEncoder  
import java.lang.Exception  

@Configuration  
@EnableWebSecurity  
class WebSecurity : WebSecurityConfigurerAdapter() {  
  @Bean  
  public fun encriptator () : BCryptPasswordEncoder{  
  return BCryptPasswordEncoder();  
  }  
  @Throws(Exception::class)  
  override fun configure(http: HttpSecurity) {  
 http  .authorizeRequests()  
  .antMatchers("/", "/home").permitAll()  
  .anyRequest().authenticated()  
  .and()  
  .formLogin()  
  .loginPage("/login")  
  .permitAll()  
  .and()  
  .logout()  
  .permitAll();  
  }  
}

总是将我重定向到/login。
文件位置与app.kt处于同一级别

lyr7nygr

lyr7nygr1#

我得到了解决方案,我的问题是package关键字丢失,所以我将config文件移到一个名为config的包中,现在它可以工作了

相关问题