목록springsecurity (2)
주뇽's 저장소
http.csrf().disable() is not working in Spring Boot 3.x.x. 스프링 부트 3.x.x 버전 부터는 csrf().disable()이 적용 시 경고 문장이 뜬다. 이는 다음과 같이 바꿔주면 된다. http.csrf().disable() => http.csrf(AbstractHttpConfigurer::disable) Security 필터체인 커스터마이징 코드 @Configuration public class SecurityConfiguration { @Bean public SecurityFilterChain filterChain(HttpSecurity http) throws Exception { http.authorizeHttpRequests( auth -> aut..
Spring Security 로그인과 로그아웃에 관련된 기능을 쉽게 구현할 수 있음 로그인 구현 Spring Security 의존성 추가 implementation 'org.springframework.boot:spring-boot-starter-security' 의존성을 추가하는것만으로 따로 로그인 페이지나 기능을 구현하지 않아도 자동으로 로그인 페이지로 넘어가진다. 개발자 전용 id : user pw : 디버깅 창에서 나오는 패스워드 디버깅 창에서 나오는 패스워드는 항상 바뀌기 때문에 이를 고정된 값으로 매핑해줄 수 있다. ## 추가 application.properties에서 간단하게 아디이와 패스워드 설정하는 법(간단함) spring.security.user.name = username sprin..