Skip to content

Instantly share code, notes, and snippets.

@jdewind
Created August 10, 2012 19:44
Show Gist options
  • Save jdewind/3317310 to your computer and use it in GitHub Desktop.
Save jdewind/3317310 to your computer and use it in GitHub Desktop.
Guice Interceptor Bindings
@Override
protected void configure() {
RefreshEntityInterceptor refreshEntityInterceptor = new RefreshEntityInterceptor();
requestInjection(refreshEntityInterceptor);
bindInterceptor(Matchers.any(), Matchers.annotatedWith(RefreshEntity.class), refreshEntityInterceptor);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment