我正在使用包含自动生成的id值的实体类,如下所示,
<Window
<Image Source="path to image 1" Grid.Row="1" Grid.Column="8"
Name="Image" Stretch="None" HorizontalAlignment="Center"
VerticalAlignment="Center"></Image>
</Grid>
</Window>
我尝试使用JpaRepository接口在User类中获取id的最大值。 这是示例代码。
@Entity
@Table(name="BlogUser")
public class User {
@Id
@GeneratedValue(strategy=GenerationType.AUTO)
@Column
private Long id;
@Column
private String username;
但是此行返回唯一的简单计数值,而不返回User类ID值的最大值。如何通过流功能获取User实体类中的最大id值?
答案 0 :(得分:2)
您可以使用Stream.max
来找到它,如:
Long 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);