Hibernate allows to inspect every SQL command and possibly returning a different SQL command before it is executed, thankfully to the StatementInspector SPI.
In our (blocking) Spring Web App we are using it to implement multi-tenancy at row level. The user authenticates and in hibernate's inspect
method we get user authentication info from the Spring SecurityContextHolder
, which we use to change the SQL and implement multi-tenancy. Everything works, as each HTTP request is bound to a specify Thread that will completely fulfill the request.
In a reactive version of the above app this doesn't work. ReactiveSecurityContextHolder
returns the asynchronous type Mono
and the hibernate's inspect
method return a sync type (String
).
Is there a similar method like inspect
in hibernate reactive to keep the similar multitenancy implementation like in the blocking version, maybe something like Mono<String> inspect(String sql);
I wasn't able to find it.
I've created an issue to keep track of this feature.
In the meanwhile, in Hibernate Reactive, you could create a wrapper around
ReactiveConnection
and intercepts all the calls related to the execution of the query.For example, you can have:
You can register the new pool class using the property
hibernate.vertx.pool.class
: