
com.star.template.db.constant.ConnectionEnum Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of utils Show documentation
Show all versions of utils Show documentation
some utility class for java develop
The newest version!
package com.star.template.db.constant;
/**
* 连接常量
*
*
* @author starhq
*/
public enum ConnectionEnum {
USERNAME("jdbc.username", "数据源:用户名"),
PASSWORD("jdbc.password", "数据源:密码"),
DIRVER("jdbc.driver", "数据源:驱动"),
URL("jdbc.url", "数据源:URL");
public final String code;
public final String desc;
ConnectionEnum(String code, String desc) {
this.code = code;
this.desc = desc;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy