Skip to content

Instantly share code, notes, and snippets.

@onurcill
Created February 28, 2022 20:30
Show Gist options
  • Save onurcill/7a7a8e498ddf23c42d480a0d66bccb26 to your computer and use it in GitHub Desktop.
Save onurcill/7a7a8e498ddf23c42d480a0d66bccb26 to your computer and use it in GitHub Desktop.
@Component
@AllArgsConstructor
public class HibernateInterceptorConfiguration implements HibernatePropertiesCustomizer {
private final EmptyInterceptor tenantInterceptor;
@Override
public void customize(final Map<String, Object> hibernateProperties) {
hibernateProperties.put("hibernate.session_factory.interceptor", this.tenantInterceptor);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment