java.lang.StringIndexOutOfBoundsException: String index out of range: 0错误的原因

java.lang.StringIndexOutOfBoundsException: String index out of range: 0

在hibernate做查询的时候

List<?> listObject = sqlQuery
.setFirstResult((currentPageIndex - 2) * showCounts)
.setMaxResults(showCounts)
.setResultTransformer(
org.hibernate.transform.Transformers.ALIAS_TO_ENTITY_MAP)
.list();
当查询的数据在数据库中不能为空,但是在数据库中为空的时候,会报这种错误,这是因为数据库的数据的问题。

你可能感兴趣的:(java.lang.StringIndexOutOfBoundsException: String index out of range: 0错误的原因)