250x250
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- 도메인 주도 개발 시작하기
- 기술면접
- CleanCode
- vue.js
- 인프런백기선
- mysql
- 스프링부트와AWS로혼자구현하는웹서비스
- 자바
- SQL쿡북
- 자료구조
- jpa
- 자바예외
- 알고리즘분석
- 알고리즘
- 자바스터디
- 인덱스
- java
- AWS
- react
- AWS RDS
- 혼공SQL
- 이팩티브 자바
- 이펙티브자바
- DDD
- aop
- 네트워크
- 인프런김영한
- MariaDB
- 클린코드
- 이펙티브 자바
Archives
- Today
- Total
기록이 힘이다.
WebSecurityConfigurerAdapter 대체 SecurityFilterChain 본문
728x90
Deprecated. Use a SecurityFilterChain Bean to configure HttpSecurity or a WebSecurityCustomizer Bean to configure WebSecurity
@RequiredArgsConstructor @EnableWebSecurity //spring security 설정들을 활성화 public class SecurityConfig{ private final CustomOAuth2UserService customOAuth2UserService; @Bean public SecurityFilterChain securityFilterChain(HttpSecurity http) throws Exception { http .csrf().disable() .headers().frameOptions().disable() .and() .authorizeRequests() .antMatchers("/", "/css/**", "/images/**", "/js/**", "/h2-console/**").permitAll() .antMatchers("/api/v1/**").hasRole(Role.USER.name()) .anyRequest().authenticated() .and() .logout().logoutSuccessUrl("/") .and() .oauth2Login() .userInfoEndpoint() .userService(customOAuth2UserService); return http.build(); } }
'SpringBoot' 카테고리의 다른 글
스프링 AOP (0) | 2023.07.14 |
---|---|
AspectJ 프레임워크 (0) | 2023.07.14 |
org.hibernate.tool.schema.spi.CommandAcceptanceException: Error executing DDL "drop table if exists user CASCADE " via JDBC Statement (0) | 2023.07.07 |
[스프링 핵심 원리 고급편 ] - 로그 추적기V1 (0) | 2023.03.04 |
[스프링 핵심 원리 고급편 ] - 로그 추적기 (0) | 2023.03.02 |