根据
Spring Data JPA文档的
section 3.4.5,可以通过使用关键字first和top来限制查询方法的结果.
我写了这样的代码:
SysPrefixName findFirstByTableName(String tableName);
但是,运行代码时出现此错误:
result returns more than one elements; nested exception is javax.persistence.NonUniqueResultException: result returns more than one elements
任何有关解决此问题的帮助将不胜感激.
最佳答案 Spring Data JPA 1.7中引入了对这些关键字的支持.有关详情,请参见
this ticket.