You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When an AdapterFactory implementation is instantiated, not all aspects are necessarily hard-coded. For example the JdbcAdapterFactory must use the ServiceLoader in order to find out which SQL dialects it supports.
To avoid any chicken-of-the-egg problems, we add a new initialization method to the AdapterFactory that is guaranteed to be called before any of the other methods in that interface.
The text was updated successfully, but these errors were encountered:
Situation
When an
AdapterFactory
implementation is instantiated, not all aspects are necessarily hard-coded. For example theJdbcAdapterFactory
must use theServiceLoader
in order to find out which SQL dialects it supports.To avoid any chicken-of-the-egg problems, we add a new initialization method to the
AdapterFactory
that is guaranteed to be called before any of the other methods in that interface.The text was updated successfully, but these errors were encountered: