e.lastaflute.0.6.0-RC7.source-code.jdbc.xml Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of lastaflute Show documentation
Show all versions of lastaflute Show documentation
Typesafe Web Framework for LeAn STArtup with DBFlute and Java8
<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE components PUBLIC "-//DBFLUTE//DTD LastaDi 1.0//EN" "http://dbflute.org/meta/lastadi10.dtd"> <components namespace="jdbc"> <include path="jta.xml"/> <include path="lastaflute_assist.xml"/> <component name="xaDataSource" class="org.lastaflute.db.dbcp.HookedXADataSource"> <property name="driverClassName"> provider.config().getJdbcDriver() </property> <property name="URL"> provider.config().getJdbcUrl() </property> <property name="user">provider.config().getJdbcUser()</property> <property name="password">provider.config().getJdbcPassword()</property> </component> <component name="connectionPool" class="org.lastaflute.db.dbcp.HookedConnectionPool"> <property name="timeout">600</property> <property name="maxPoolSize">provider.config().getJdbcConnectionPoolingSize()</property> <property name="allowLocalTx">true</property> <preDestroy name="close"/> </component> <component name="dataSource" class="org.lastaflute.db.dbcp.HookedPooledDataSource"/> </components>