如何获得流的最大索引值

时间:2019-02-10 08:53:58

标签: java java-8 max java-stream

我正在使用包含自动生成的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值?

1 个答案:

答案 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);