cn.hutool.db.sql.Query Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hutool-all Show documentation
Show all versions of hutool-all Show documentation
Hutool是一个小而全的Java工具类库,通过静态方法封装,降低相关API的学习成本,提高工作效率,使Java拥有函数式语言般的优雅,让Java语言也可以“甜甜的”。
package cn.hutool.db.sql;
import cn.hutool.core.collection.CollUtil;
import cn.hutool.core.collection.CollectionUtil;
import cn.hutool.core.util.ArrayUtil;
import cn.hutool.db.DbRuntimeException;
import cn.hutool.db.Entity;
import cn.hutool.db.Page;
import java.util.Collection;
import java.util.Set;
/**
* 查询对象,用于传递查询所需的字段值
* 查询对象根据表名(可以多个),多个条件 {@link Condition} 构建查询对象完成查询。
* 如果想自定义返回结果,则可在查询对象中自定义要查询的字段名,分页{@link Page}信息来自定义结果。
*
* @author Looly
*
*/
public class Query {
/** 查询的字段名列表 */
Collection fields;
/** 查询的表名 */
String[] tableNames;
/** 查询的条件语句 */
Condition[] where;
/** 分页对象 */
Page page;
/**
* 从{@link Entity}构建Query
* @param where 条件查询{@link Entity},包含条件Map和表名
* @return Query
* @since 5.5.3
*/
public static Query of(Entity where){
final Query query = new Query(SqlUtil.buildConditions(where), where.getTableName());
final Set fieldNames = where.getFieldNames();
if(CollUtil.isNotEmpty(fieldNames)){
query.setFields(fieldNames);
}
return query;
}
// --------------------------------------------------------------- Constructor start
/**
* 构造
*
* @param tableNames 表名
*/
public Query(String... tableNames) {
this(null, tableNames);
this.tableNames = tableNames;
}
/**
* 构造
*
* @param where 条件语句
* @param tableNames 表名
*/
public Query(Condition[] where, String... tableNames) {
this(where, null, tableNames);
}
/**
* 构造
*
* @param where 条件语句
* @param page 分页
* @param tableNames 表名
*/
public Query(Condition[] where, Page page, String... tableNames) {
this(null, tableNames, where, page);
}
/**
* 构造
*
* @param fields 字段
* @param tableNames 表名
* @param where 条件
* @param page 分页
*/
public Query(Collection fields, String[] tableNames, Condition[] where, Page page) {
this.fields = fields;
this.tableNames = tableNames;
this.where = where;
this.page = page;
}
// --------------------------------------------------------------- Constructor end
// --------------------------------------------------------------- Getters and Setters start
/**
* 获得查询的字段名列表
*
* @return 查询的字段名列表
*/
public Collection getFields() {
return fields;
}
/**
* 设置查询的字段名列表
*
* @param fields 查询的字段名列表
* @return this
*/
public Query setFields(Collection fields) {
this.fields = fields;
return this;
}
/**
* 设置查询的字段名列表
*
* @param fields 查询的字段名列表
* @return this
*/
public Query setFields(String... fields) {
this.fields = CollectionUtil.newArrayList(fields);
return this;
}
/**
* 获得表名数组
*
* @return 表名数组
*/
public String[] getTableNames() {
return tableNames;
}
/**
* 设置表名
*
* @param tableNames 表名
* @return this
*/
public Query setTableNames(String... tableNames) {
this.tableNames = tableNames;
return this;
}
/**
* 获得条件语句
*
* @return 条件语句
*/
public Condition[] getWhere() {
return where;
}
/**
* 设置条件语句
*
* @param where 条件语句
* @return this
*/
public Query setWhere(Condition... where) {
this.where = where;
return this;
}
/**
* 获得分页对象,无分页返回{@code null}
*
* @return 分页对象 or {@code null}
*/
public Page getPage() {
return page;
}
/**
* 设置分页对象
*
* @param page 分页对象
* @return this
*/
public Query setPage(Page page) {
this.page = page;
return this;
}
// --------------------------------------------------------------- Getters and Setters end
/**
* 获得第一个表名
*
* @return 表名
* @throws DbRuntimeException 没有表
*/
public String getFirstTableName() throws DbRuntimeException {
if (ArrayUtil.isEmpty(this.tableNames)) {
throw new DbRuntimeException("No tableName!");
}
return this.tableNames[0];
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy