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;
}
}