HomeAboutMeBlogGuest
© 2025 Sejin Cha. All rights reserved.
Built with Next.js, deployed on Vercel
🚀
Random Bit Flip
/
✈️
[2기 - 아만드] 12주차 RBF
✈️

[2기 - 아만드] 12주차 RBF

주차
그냥 같이 일하면 협업?
회고일
Jun 10, 2022
참여자
멘토
Property
tag
한 주간 배우면서 새로 알게된 개념이나 잘 못 알았던 개념을 서로 나누어 보아요.
  • WebSecurityConfigurerAdapter
    • Spring Security 5.7.1(5.7.0 - M2) 부터는 WebSecurityConfigurerAdapter가 deprecated 되었다.
      WebSecurityConfigurerAdapter 을 상속하여 사용하는 것 대신 빈으로 등록하여 사용하는 것을 권장하다
      Spring Boot 2.7.0 버전에서 starter로 security 넣으면 5.7.1버전을 사용하게 된다.
      Spring Security without the WebSecurityConfigurerAdapter
      In Spring Security 5.7.0-M2 we deprecated the WebSecurityConfigurerAdapter , as we encourage users to move towards a component-based security configuration. To assist with the transition to this new style of configuration, we have compiled a list of common use-cases and the suggested alternatives going forward.
      Spring Security without the WebSecurityConfigurerAdapter
      https://spring.io/blog/2022/02/21/spring-security-without-the-websecurityconfigureradapter
      Spring Security without the WebSecurityConfigurerAdapter