All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.nicklaus4.db.config.DBReaderConfig Maven / Gradle / Ivy

There is a newer version: 1.0.6
Show newest version
package com.github.nicklaus4.db.config;

import lombok.Data;

/**
 * db reader
 *
 * @author weishibai
 * @date 2019/03/19 2:51 PM
 */
@Data
public class DBReaderConfig {

    private String url;

    private String username;

    private String password;

    private String driverClass;

    private long connectionTimeout;

    private long idleTimeout;

    private int maxPoolSize;


}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy