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

com.base4j.mybatis.config.DataSourceProperties Maven / Gradle / Ivy

The newest version!
package com.base4j.mybatis.config;

import org.springframework.boot.context.properties.ConfigurationProperties;

/**
 * Created by [huangjun] on 2017-07-25.
 */
@ConfigurationProperties(prefix = "datasource")
public class DataSourceProperties {

    private String pool;

    public String getPool() {
        return pool;
    }

    public void setPool(String pool) {
        this.pool = pool;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy