Looking forward to it!
References
- VoxxedDays Amsterdam
- https://amsterdam.voxxeddays.com/
Trying to define some of my thoughts on Software Design.
So I had the problem that I needed to connect to both Oracle databases as well as Postgres database.
And just including the dependencies in my Maven was not enough.
One of the drivers gets overwritten by another driver in the service provider mechanism.
At first I tried to register them by hand (which works):
Or, you could do the extreme magic thing1 2:
Which causes both drivers to run a static block registering themselves on the DriverManager in the same fashion as my code on top.
All this, because the service provider mechanism that automatically loads the JDBC driver, only allows one Driver to be registered3.