Has anyone tried using JOOQ with the Spring framework or am I breaking new ground?

http://www.jooq.org

link|improve this question
It's highly unlikely that you're "breaking new ground." Do you even have a question, or are you just curious to see if anyone else on the planet has used jOOQ with Spring? – Matt Ball Dec 17 '10 at 22:47
As jOOQ is quite new itself, you're likely to break new ground. How would you like to interface the two libraries? Are you planning to use spring as a means to configure jOOQ? I'm curious about your use-case – Lukas Eder Dec 18 '10 at 13:36
Hi Lukas, I don't have a particular use case in mind. I asked the question to see if others have used the two libraries together and have any experiences worth sharing. I can see that I can use a Spring configured data source to provide a connection to the jOOQ factory. Beyond that I'm not sure if there is any merit in deeper integration but I'm a relative novice to Spring so favour learning by example. – donaldh Dec 18 '10 at 22:03
feedback

5 Answers

up vote 5 down vote accepted

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

link|improve this answer
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:

Factory create = new Factory(null, SQLDialect.ORACLE);
getJdbcTemplate().query(
    create.select(create.field(ID_COL),
                  create.field(VALUE_COL))
        .from(FOO_TABLE)
        .where(create.field(ID_COL).equals("ignored"))
        .getSQL(),
    myRowMapper,
    id);
link|improve this answer
3  
That's a nice example of integration. Why did you choose spring to execute your query? Because of jOOQ's missing row-mapping functionality? Or the lack of transaction handling? – Lukas Eder Jul 26 '11 at 8:56
feedback

Assuming you are using Spring to build a webapp, you probably want to be doing something like this:

try {
  Connection conn = dataSource.getConnection();;
  try {
    // Do something with JOOQ
    // No need to use a JdbcTemplate!
  }
  finally {
    if (conn != null) {
      conn.close();
    }
  }
} catch (SQLException e) {
  // your error handling
}

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

<jee:jndi-lookup id="dataSource" jndi-name="java:comp/env/jdbc/datasource"/>

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

<bean id="fooService" class="com.fubar.FooServiceImpl">
  <constructor-arg ref="dataSource" type="javax.sql.DataSource" />
</bean>

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,

<?xml version="1.0" encoding="UTF-8"?>
<Context debug="10" reloadable="true" useNaming="true" antiJARLocking="true">
    <Resource name="jdbc/datasource" auth="Container" type="javax.sql.DataSource"
        maxActive="100" maxIdle="30" maxWait="10000" validationQuery="SELECT 1"
        username="foo" password="fubar" driverClassName="org.postgresql.Driver" 
        url="jdbc:postgresql://localhost/foobase"/>         
</Context>
link|improve this answer
feedback

hope this can be helpful for someone.....

Spring application context configuration.

 <bean id="propertyConfigurer" 
      class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
        <property name="systemPropertiesModeName">
            <value>SYSTEM_PROPERTIES_MODE_OVERRIDE</value>
        </property>
        <property name="searchSystemEnvironment">
            <value type="boolean">true</value>
        </property>
    </bean>



    <bean id="dataSource" 
        class="org.springframework.jdbc.datasource.DriverManagerDataSource" >
        <property name="driverClassName" value="org.h2.Driver"/>
        <property name="url" 
        value="jdbc:h2://${user.home}
        ${file.separator}tracciabilitaCanarini${file.separator}db${file.separator}basedb"/>
        <property name="username" value="sa"/>
        <property name="password" value="sa"/>
    </bean>

    <bean id="datasourceConnection" 
     class="org.springframework.beans.factory.config.MethodInvokingFactoryBean" 
      lazy-init="true" depends-on="dataSource">
        <property name="targetObject">
            <ref bean="dataSource"/>
        </property>
        <property name="targetMethod">
            <value>getConnection</value>
        </property>
    </bean>

    <bean id="publicFactory" class="dbLayer.db.PublicFactory" lazy-init="true"
      depends-on="datasourceConnection" >
        <constructor-arg index="0" ref="datasourceConnection"  />
    </bean>

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.

/**
 * This class is generated by jOOQ
 */
package dbLayer.db;

/**
 * This class is generated by jOOQ.
 */
@javax.annotation.Generated(value    = {"http://www.jooq.org", "2.0.5"},
                            comments = "This class is generated by jOOQ")
public class PublicFactory extends org.jooq.util.h2.H2Factory {

    private static final long serialVersionUID = -1930298411;

    /**
     * Create a factory with a connection
     *
     * @param connection The connection to use with objects created from this factory
     */
    public PublicFactory(java.sql.Connection connection) {
        super(connection);
    }

    /**
     * Create a factory with a connection and some settings
     *
     * @param connection The connection to use with objects created from this factory
     * @param settings The settings to apply to objects created from this factory
     */
    public PublicFactory(java.sql.Connection connection, org.jooq.conf.Settings settings) {
        super(connection, settings);
    }
}

At the end, simply call the factory.

 PublicFactory vs = (PublicFactory) SpringLoader.getBean("publicFactory");
    SimpleSelectQuery<VersionRecord> sq = vs.selectQuery(dbLayer.db.tables.Version.VERSION);
    VersionRecord v = null;
                try {
                    v = sq.fetchAny();
                } catch (Exception e) {
                    log.warn("Seems that version table does not exists!", e);
                }

Done!

Bye,

Agharta

link|improve this answer
feedback

Agharta,

According to http://static.springsource.org/spring/docs/3.0.x/api, DriverManagerDataSource does not pool connection, auto-close, ...

NOTE: This class is not an actual connection pool; it does not actually pool Connections. It just serves as simple replacement for a full-blown connection pool, implementing the same standard interface, but creating new Connections on every call.

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.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.