봄맞이 보안에 개미 사냥꾼이 여럿 등장합니다. 저는 다음과 같은 5개의 앤트매처(antMatcher)를 가진 컨텐츠 관리 시스템을 연구하고 있습니다. http.authorizeRequests() .antMatchers("/", "/*.html").permitAll() .antMatchers("/user/**").hasRole("USER") .antMatchers("/admin/**").hasRole("ADMIN") .antMatchers("/admin/login").permitAll() .antMatchers("/user/login").permitAll() .anyRequest().authenticated() .and() .csrf().disable(); 방문자는 루트 경로에서 모든 사이트를 볼 수 있고..