Upgrade Notes
From v1 to v2
This is a list of importance breaking-changes from v1
to v2
: breaking-changes
In most case, the main API that means how to initialize jooqx
instance and how to execute SQL query via jooqx
, was not changed.
But, some importance changes in package/module level and project artifact name need to be updated by yourself:
-
Update library dependency:
-
Rename main artifact from
io.github.zero88:jooqx-core
toio.github.zero88:jooqx
-
So you have to update the build descriptor. Follow Use jOOQ.x in your project
-
-
Change package name:
-
Replace all
import
statement in java files fromimport io.zero88.jooqx
⇒import io.github.zero88.jooqx
-
-
Change
JsonRecord
interface. See this pull request