jooq/jOOQ-examples
Lukas Eder 0e1bfcfa46 [jOOQ/jOOQ#11071] Fix nested record backports
Nested records are implicitly static and final. We only made them final, but not static, which can cause issues when using DefaultRecordMapper on those records (mapping(R::new) isn't a problem, because the Java compiler can work with both static and inner classes, this way)
2022-05-20 09:22:50 +02:00
..
Benchmarks Use CURRENT_TIMESTAMP instead of CURTIME 2021-10-25 09:25:35 +02:00
jOOQ-academy Release 3.17.0-SNAPSHOT 2022-01-04 16:34:34 +01:00
jOOQ-checker-framework-example [jOOQ/jOOQ#13399] Updated a few dependencies 2022-04-06 11:44:16 +02:00
jOOQ-flyway-ddl-example [jOOQ/jOOQ#13336] Re-generated example code 2022-03-24 16:15:09 +01:00
jOOQ-flyway-example Upgrade Flyway to 8.3 to work around https://github.com/flyway/flyway/issues/3336 2022-01-05 10:00:17 +01:00
jOOQ-javafx-example Use a -2 suffix in H2's JDBC URLs to indicate H2 2.0 2022-01-05 09:49:47 +01:00
jOOQ-jpa-example [jOOQ/jOOQ#13336] Re-generated example code 2022-03-24 16:15:09 +01:00
jOOQ-jpa-example-entities [jOOQ/jOOQ#9641] Some jakarta related example fixes 2022-01-05 10:26:21 +01:00
jOOQ-kotlin-example [jOOQ/jOOQ#13336] Re-generated example code 2022-03-24 16:15:09 +01:00
jOOQ-oracle-example Release 3.17.0-SNAPSHOT 2022-01-04 16:34:34 +01:00
jOOQ-r2dbc-example [jOOQ/jOOQ#13336] Re-generated example code 2022-03-24 16:15:09 +01:00
jOOQ-spark-chart-example [jOOQ/jOOQ#13542] Replace SPI default implementation class (e.g. 2022-05-10 10:20:08 +02:00
jOOQ-spark-example Use a -2 suffix in H2's JDBC URLs to indicate H2 2.0 2022-01-05 09:49:47 +01:00
jOOQ-spring-boot-example [jOOQ/jOOQ#5254] Improved some more readme.md files 2022-05-02 10:57:36 +02:00
jOOQ-spring-example [jOOQ/jOOQ#13542] Replace SPI default implementation class (e.g. 2022-05-10 10:20:08 +02:00
jOOQ-testcontainers-example [jOOQ/jOOQ#11071] Fix nested record backports 2022-05-20 09:22:50 +02:00
jOOQ-testcontainers-flyway-example [jOOQ/jOOQ#11071] Fix nested record backports 2022-05-20 09:22:50 +02:00
Sakila [jOOQ/jOOQ#12110] Move Sakila database to own repository 2021-07-06 09:42:43 +02:00
pom.xml [jOOQ/jOOQ#13069] Avoid generating commercial-only code 2022-02-16 08:24:41 +01:00
README.md [jOOQ/jOOQ#5254] Improved some more readme.md files 2022-05-02 10:57:36 +02:00

The examples in this repository depend on the latest snapshot version of the jOOQ Open Source Edition, and in some cases, of the commercial distributions. In order to run the examples, you can either:

  • Build the snapshot version first
  • Replace the snapshot version references from the various pom.xml files by the latest published version

To build the jOOQ snapshot version, check out this repository and run the following set of commands:

$ pwd
/path/to/checkout/dir
$ mvn clean install