SpringSecurity/해커톤

@Configuration@EnableWebSecuritypublic class SecurityConfig extends WebSecurityConfigurerAdapter { @Override protected void configure(HttpSecurity http) throws Exception { http .authorizeRequests() .antMatchers("/", "/login**", "/error**").permitAll() .antMatchers("/api/**").permitAll() .anyRequest().authenticated() ..
브리오
'SpringSecurity/해커톤' 카테고리의 글 목록