[seasar-dev:1029] Re: リリース計画
[E-MAIL ADDRESS DELETED]
[E-MAIL ADDRESS DELETED]
2009年 1月 27日 (火) 23:38:27 JST
takao です。
教えて頂いた変更をドキュメントに加えました。
>1)ページングが効いていない。
>S2Daoでページングをする際はjdbc.diconに設定を記述する必要があります。
>今はjdbc.diconに次のような設定がありますが、
>
> <component class="org.seasar.extension.jdbc.impl.BasicResultSetFactory"/>
> <component class="org.seasar.extension.jdbc.impl.ConfigurableStatementFactory">
> <arg>
> <component class="org.seasar.extension.jdbc.impl.BasicStatementFactory"/>
> </arg>
> <property name="fetchSize">100</property>
> </component>
>
>これを次のように変えると大丈夫になります。
>
> <!-- LIMIT OFFSET句を使ったSQL書き換えによるページング処理用設定 -->
> <component name="pagingSqlRewriter" class="org.seasar.dao.pager.LimitOffsetPagingSqlRewriter"/>
> <component class="org.seasar.extension.jdbc.impl.BasicResultSetFactory"/>
> <component class="org.seasar.extension.jdbc.impl.ConfigurableStatementFactory">
> <arg>
> <component class="org.seasar.extension.jdbc.impl.BasicStatementFactory"/>
> </arg>
> <property name="fetchSize">100</property>
> </component>
>
-- 以上 --
Seasar-dev メーリングリストの案内