hibernate 会自动排序?select * from users where id=2 or id=1 or id=3 or id=4hibernate自动将结果按id排序了,是哪里配置的问题?我不想让它排序。[解决办法]这个跟hibernate有啥关系 默认就是跟据主键 id 升序排序[解决办法]数据库,因为你users这张表,id是主键或者用到了索引,select的时候,直接根据索引来检索,顺序也是按照索引的字段的升序[解决办法]根hibernate没有关系的