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