com.sqlapp.gradle.plugins.pojo.DataSourcePojo.groovy Maven / Gradle / Ivy
/*
* Copyright (C) 2007-2017 Tatsuo Satoh
*
* This file is part of sqlapp-gradle-plugin.
*
* sqlapp-gradle-plugin is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* sqlapp-gradle-plugin is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with sqlapp-gradle-plugin. If not, see .
*/
package com.sqlapp.gradle.plugins.pojo
import com.sqlapp.util.CommonUtils
import java.io.File
import java.util.List;
import org.gradle.api.DefaultTask
import org.gradle.api.Plugin
import org.gradle.api.Project
import org.gradle.api.tasks.Input
import org.gradle.api.tasks.Optional;
import org.gradle.api.tasks.TaskAction;
class DataSourcePojo implements Cloneable{
Project project;
public DataSourcePojo(Project project) {
this.project=project;
}
/**
* JDBC Driver Class Name
*/
@Input
@Optional
String driverClassName;
/**
* JDBC URL
*/
@Input
@Optional
String url;
/**
* JDBC User Name
*/
@Input
@Optional
String username;
/**
* JDBC Password
*/
@Input
@Optional
String password;
/**
* defaultCatalog
*/
@Input
@Optional
String defaultCatalog;
/**
* デフォルトオートコミット
*/
@Input
@Optional
Boolean defaultAutoCommit = null;
/**
* fairQueue
*/
@Input
@Optional
Boolean fairQueue=null;
/**
* プールの起動時に作成されるコネクションの初期サイズ
*/
@Input
@Optional
Integer initialSize = null;
/**
* コネクション作成時に実行されるSQL
*/
@Input
@Optional
String initSQL = null;
/**
* 最大接続数
*/
@Input
@Optional
Integer maxActive = null;
/**
* 最大寿命
*/
@Input
@Optional
Long maxAge = null;
/**
* プール内のコネクションが不足したときの最大待ち時間
*/
@Input
@Optional
Integer maxWait = null;
/**
* プールに保持しておく最大のコネクション数
*/
@Input
@Optional
Integer maxIdle = null;
/**
* プールに保持する最小のコネクション数
*/
@Input
@Optional
Integer minIdle = null;
@Input
@Optional
String name;
/**
* コネクションが有効かどうかを検証するためのSQL
*/
@Input
@Optional
String validationQuery;
/**
* コネクションが有効かどうかを検証するためのSQLの実行間隔
*/
@Input
@Optional
Long validationInterval=null;
/**
* コネクションが有効かどうかを検証するためのSQLのタイムアウト時間
*/
@Input
@Optional
Integer validationQueryTimeout=null;
/**
* コネクションをプールから取り出すときに検証するかどうか
*/
@Input
@Optional
Boolean testOnBorrow;
/**
* コネクション作成時に検証するかどうか
*/
@Input
@Optional
Boolean testOnConnect;
/**
* コネクションをプールに返すときに検証するかどうか
*/
@Input
@Optional
Boolean testOnReturn;
/**
* クローズ漏れとなったコネクションを回収するかどうか
*/
@Input
@Optional
Boolean removeAbandoned = false;
/**
* コネクションが最後に使用されてから回収対象となるまでの時間(秒)
*/
@Input
@Optional
int removeAbandonedTimeout = 60 * 10;
/**
* デフォルトトランザクション分離レベル
*/
@Input
@Optional
Integer defaultTransactionIsolation = null;
/**
* プール内のアイドル接続を一定時間毎に監視するスレッドを開始させます。間隔をミリ秒単位で指定します。
*/
@Input
@Optional
Integer timeBetweenEvictionRunsMillis = null;
/**
* 監視処理時、アイドル接続の有効性を確認します。
*/
@Input
@Optional
Boolean testWhileIdle = null;
/**
* 監視処理時、アイドル接続の生存期間をチェックします。
*/
@Input
@Optional
Integer minEvictableIdleTimeMillis = null;
/**
* 1回の監視処理でチェックするアイドル接続数の最大値を指定します。
*/
@Input
@Optional
Integer numTestsPerEvictionRun = null;
/**
* JDBCインターセプタ
*/
@Input
@Optional
String jdbcInterceptors = null;
/**
* JMX enabled
*/
@Input
@Optional
Boolean jmxEnabled=null;
/**
* プロパティファイル
*/
List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy