스프링부트 시큐리티(Security) 6 config 작성방법 작성예시@Configuration@EnableWebSecuritypublic class SecurityConfig { @Bean public SecurityFilterChain filterChain(HttpSecurity http) throws Exception { return http .csrf().disable() //csrf 비활성화 .authorizeHttpRequests((request)-> { request.requestMatchers("/user/**").authenticated();//인증이..