@Entity
@Table(name="BlogUser")
public class User {
@Id
@GeneratedValue(strategy=GenerationType.AUTO)
@Column
private Long id;
@Column
private String username;
我尝试使用JpaRepository接口在User类中获取id的最大值.
这是示例代码.
UserJpaRepository.findAll().stream().count();
最佳答案
您可以使用Stream.max找到它,例如:
原文链接:https://www.f2er.com/java/532841.htmlLong maxId = UserJpaRepository.findAll().stream()
.map(User::getId) // mapping to id
.max(Comparator.naturalOrder()) // max based on natural comparison
.orElse(Long.MIN_VALUE); // if nothing element is mapped
或简单地作为
long maxId = UserJpaRepository.findAll().stream()
.mapToLong(User::getId) // map to id
.max() // find max
.orElse(Long.MIN_VALUE);