Hello,
Source code of FactoryProxy you can find here:
https://github.com/jOOQ/jOOQ/blob/0cdbbb9a116faa8624edb8ab5bed5b12cd80365d/jOOQ/src/main/java/org/jooq/impl/FactoryProxy.java
Here is configuration example:
<bean id="jooQFactoryProxy" class="org.jooq.impl.FactoryProxy">
<property name="dataSource" ref="transactionAwareDataSource"/>
<property name="settings">
<bean class="org.jooq.conf.Settings">
<property name="renderMapping">
<bean class="org.jooq.conf.RenderMapping">
<property name="schemata">
<list>
<bean class="org.jooq.conf.MappedSchema">
<property name="input" value="AA"/>
<property name="output"
value="${aa.db.schema}"/>
</bean>
</list>
</property>
</bean>
</property>
</bean>
</property>
<property name="dialect">
<value type="org.jooq.SQLDialect">ORACLE</value>
</property>
</bean>
--
Sergey
On Thu, Apr 26, 2012 at 5:20 PM, ericjs <[email protected]> wrote:
> Excellent!
>
> And where may I find FactoryProxy? I don't see it in the 2.2.2
> javadoc. A quick search on this group turned up mention of a jooq-
> spring module which I did not spot when I downloaded everything. And
> you FAQ refers only to the StackOverfow discussion on spring so I did
> not realize further development of spring integration had occurred.