Skip to content

Instantly share code, notes, and snippets.

@przodownikR1
Created December 3, 2015 13:11
Show Gist options
  • Save przodownikR1/51ab449d8287f3120ed6 to your computer and use it in GitHub Desktop.
Save przodownikR1/51ab449d8287f3120ed6 to your computer and use it in GitHub Desktop.
public class WebConfig extends WebMvcConfigurationSupport {
@Bean
public AuthenticationPrincipalArgumentResolver authPrincipalArgResolver(){
return new AuthenticationPrincipalArgumentResolver();
}
@Override
public void addArgumentResolvers(List<HandlerMethodArgumentResolver> argumentResolvers) {
argumentResolvers.add(authPrincipalArgResolver());
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment