Files
spring-data-examples/jdbc/jooq/README.adoc
Florian Lüdiger b6b06121d1 #315 - Add example for Spring Data JDBC usage with jOOQ
Demonstrating how to use jOOQ as the basis for an implementation of custom repository methods.

Original pull request: #385.
2018-08-02 16:43:56 +02:00

19 lines
573 B
Plaintext

== 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
----