Has anyone tried using JOOQ with the Spring framework or am I breaking new ground?
feedback
|
|
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 | ||||
|
feedback
|
|
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:
| |||||
feedback
|
|
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,
| ||||
|
feedback
|
|
hope this can 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 ecc..., 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! Bye, Agharta | |||
|
feedback
|
|
Agharta, According to http://static.springsource.org/spring/docs/3.0.x/api, DriverManagerDataSource does not pool connection, auto-close, ...
David's solution deals with connection pools and auto-closing by use of Spring JdbcTemplate EDIT for Agharta aswer #2 : Use of DBCP datasource solves connection pooling. However, publicFactory bean has to be prototype to use pooling connection. So, connection must be closed explicitly in your code. Use of Spring JDBCTemplate makes opening, pooling, commits and closure transparent. | ||||
|
feedback
|