inflearn logo
강의

강의

N
챌린지

챌린지

멘토링

멘토링

N
클립

클립

로드맵

로드맵

지식공유

Kang ho Lee님의 게시글

Kang ho Lee Kang ho Lee

@inth82042587

수강생
-
수강평
-
강의 평점
-

게시글 1

질문&답변

WebSecurityConfigurerAdapter deprecated

그리고 antMatchers도 deprecated 되어서 밑에와 같은 방식으로 해주시면 진행 될거에요. @Configuration @EnableWebSecurity public class SecurityConfig { @Bean public SecurityFilterChain filterChain(HttpSecurity http) throws Exception { http .authorizeHttpRequests() .requestMatchers("/api/hello").permitAll() .anyRequest().authenticated(); return http.build(); } }

좋아요수
0
댓글수
4
조회수
2465