Hey all!
I've been trying to get Oracle AQ to work over HikariCP. The main problem I ran in to was that in Oracle's Topic & Queue connection factories Oracle casts the connections retrieved from the DataSource to OracleConnections and even internal.OracleConnections.
After asking a colleague with lots of Spring experience he pointed me to the NativeJdbcExtractors as an option to circumvent this problem (Basically create wrappers for the Connections that are also OracleConnections I believe)
Functionally this seems to work fine, but now the Hikari connection pool no longer seems to release the connections, so once it runs in to the max connections limit it will no longer handle any Database requests.
If someone could take a look at my code and point me in the direction of why it doesn't work right now that would be awesome.
Thanks a lot!
Bart Enkelaar