@Override
protected void configure(HttpSecurity http) throws Exception {
http
.authorizeRequests()
.antMatchers("/ping", "/users/**")
.permitAll()
.anyRequest()
.hasRole("USER");
}