Has anyone tried using JOOQ with the Spring framework or am I breaking new ground?
|
|
At the time of this question, the answer was NO, but jOOQ has gotten a lot more traction in the mean time, as some users have made experience with jOOQ and Spring. This integration becomes more and more popular, see also this discussion on the user group. Or David's answer: JOOQ and Spring If you're willing to play around with that, feel free to provide feedback also in the jOOQ User Group |
||||
|
|
|
I was looking to use jOOQ as an builder library for providing queries to Spring's JdbcTemplate and related classes. Unfortunately, jOOQ appears to combine two concepts into the same set of classes: SQL generation and query execution. In my case, I want the former but want to let Spring handle the latter. It does work, though. For example, you can do something like:
|
|||||||||||||||
|
|
All you need to do/know to make jOOQ work with spring:
So for the first and second case I offer this gist: https://gist.github.com/3669307 which does what Lukas recommends. For the third case you can either create basically a factory of a factory (which contains the
As for the settings listener you can JOOQ's configuration support to avoid the programmatic creation. I won't cover how you setup a |
||||
|
|
|
getting spring transactions running with jOOQ is a lot simpler (unless I forgot something): just wrap your data source into
optional: to delay opening a jdbc connection until the first actual sql statement happens use
so as an sample do this to create a jOOQ factory with 'transactions' and 'lazyness' applied
|
|||
|
|
|
Assuming you are using Spring to build a webapp, you probably want to be doing something like this:
You probably want to be getting a DataSource via Spring's dependency injection, because your web container, Tomcat or whathaveyou, is providing the DataSource and doing connection pooling. In one of your spring config files you would have something like
The object that the above code is in (or some object that provides this code with the datasource) could have configuration in a spring file to instantiate it with the datasource, like
The portion of the string "jdbc/datasource" would correspond to a resource name configured in the web container. This varies, but for Tomcat it might be a context file in conf/Catalina/localhost under Tomcat home, for example,
|
||||
|
|
|
Hope this will be helpful for someone.... Spring application context configuration.
It will auto fill the public factory with the given connection (and yes, it can be a pooled connection, with auto close etc., see DriverManagerDataSource class for more detailed configuration). And now, the publicFactory. Note: no need to modify the original public factory generated by jOOQ.
At the end, simply call the factory.
Done! |
|||||
|