我已经制定了标准,但是当我使用setMaxResults时,它会给我异常SQLGrammarException。但是当我评论setMaxResults时,它会在第一次结果后返回所有条目。我正在使用MySQL数据库。
代码:
return criteria
.setFirstResult(start)
.setMaxResults(end)
.setFetchSize(end)
.list();
例外:
org.hibernate.exception.SQLGrammarException: could not execute query
at org.hibernate.exception.SQLStateConverter.convert(SQLStateConverter.java:92)
at org.hibernate.exception.JDBCExceptionHelper.convert(JDBCExceptionHelper.java:66)
at org.hibernate.loader.Loader.doList(Loader.java:2536)
at org.hibernate.loader.Loader.listIgnoreQueryCache(Loader.java:2276)
at org.hibernate.loader.Loader.list(Loader.java:2271)
at org.hibernate.loader.criteria.CriteriaLoader.list(CriteriaLoader.java:119)
at org.hibernate.impl.SessionImpl.list(SessionImpl.java:1716)
at org.hibernate.impl.CriteriaImpl.list(CriteriaImpl.java:347)
....
Caused by: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ...
答案 0 :(得分:4)
问题现在解决了。我在hibernate属性中有错误的方言。我从其他使用SQL Server的项目中复制了我的属性,但是这个使用了MySQL,所以错误的方言导致了这个错误。
hibernate.dialect=org.hibernate.dialect.MySQLInnoDBDialect