Files
spring-data-examples/jdbc/jooq
Jens Schauder 038ac0a932 #563 - Adapts JDBC examples to changes in Spring Data JDBC 2.0.
Since SQL Identifiers are now quoted letter casing must be taken into consideration when specifying column names in `@Column` or similar.
Disabled Liquibase which isn't used/configured at all and therefore doesn't work.
Moved application context configurations to use `AbstractJdbcConfiguration`.
2020-05-13 15:54:28 +02:00
..
2019-11-11 14:40:37 +01:00

== Spring Data JDBC with jOOQ

The `JooqMethods` class demonstrates how to access a database with jOOQ in combination with Spring Data JDBC.
The domain model is based on the basic JDBC example for comparison.
Another interesting aspect of this code could be the jOOQ configuration in the `pom.xml` file.

To execute the tests, execute:
[indent=0]
----
	$ mvn test
----

The code generator is automatically run when executing the tests.
If you want to rerun the code generator manually, just execute the following command:
[indent=0]
----
	$ mvn clean generate-sources
----