// 기존의 JWT에 Role 추가
// 다른 객체에 의해 변경되지 않아야하는 값으로 싱글톤 패턴 사용
SimpleGrantedAuthority role = (users.getIsAdmin()) ? new SimpleGrantedAuthority("ROLE_ADMIN") : new SimpleGrantedAuthority("ROLE_USER");
UsernamePasswordAuthenticationToken authentication = new UsernamePasswordAuthenticationToken(userEmail,userPassword, Collections.singleton(role));
// 기존의 Security에 Matcher 추가
.antMatchers(HttpMethod.POST, "/notice").hasRole("ADMIN")
.antMatchers(HttpMethod.PUT, "/notice/**").hasRole("ADMIN")
.antMatchers(HttpMethod.DELETE, "/notice/**").hasRole("ADMIN")