Hibernate HQL中的“o”是什么意思

Hibernate HQL中的“o”是什么意思,hibernate,Hibernate,//o在select o中的含义是什么。o是别名。它表示entityClass的所有字段。 查询结果是entityClass实例列表它是占位符?谢谢。我现在知道了。它的意思是从entityClass中选择* String hql="select o from"+entityClass.getSimpleName()+" o where 1=1"; if(StringUtils.isNotBlank(whereHql)){ hql=hql+whereHql; } String orderBy

//o在select o中的含义是什么。

o是别名。它表示entityClass的所有字段。
查询结果是entityClass实例列表

它是占位符?谢谢。我现在知道了。它的意思是从entityClass中选择*
String hql="select o from"+entityClass.getSimpleName()+" o where 1=1";

if(StringUtils.isNotBlank(whereHql)){
hql=hql+whereHql;

}

String orderByStr=this.buildOrderBy(orderBy);

hql=hql+orderByStr;