com.github.zhengframework.jdbc.jdbi.JdbiConfig Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of zheng-jdbc-jdbi Show documentation
Show all versions of zheng-jdbc-jdbi Show documentation
zheng framework module: jdbc jdbi support
package com.github.zhengframework.jdbc.jdbi;
import com.github.zhengframework.configuration.ConfigurationDefine;
import com.github.zhengframework.configuration.annotation.ConfigurationInfo;
import lombok.Data;
import lombok.NoArgsConstructor;
@NoArgsConstructor
@Data
@ConfigurationInfo(prefix = "zheng.jdbi", supportGroup = true)
public class JdbiConfig implements ConfigurationDefine {
private boolean enable = true;
}