Skip to content

Instantly share code, notes, and snippets.

@JeromeGuyon
Created June 29, 2017 11:51
Show Gist options
  • Select an option

  • Save JeromeGuyon/ec6129f90d9ee47114fd1380dd693ccd to your computer and use it in GitHub Desktop.

Select an option

Save JeromeGuyon/ec6129f90d9ee47114fd1380dd693ccd to your computer and use it in GitHub Desktop.
@Component
@EnableMongoAuditing
public class AuditorAwareImpl implements AuditorAware<String> {
private final static String DEFAULT_USER = "anonymous";
@Override
public String getCurrentAuditor() {
return DEFAULT_USER; //do you custom user retrieving policy here
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment