如何使用JPA存储库从数据库中唯一数据?

时间:2019-09-30 13:20:15

标签: java spring-boot spring-data-jpa

List<AppRecordingRule> appRule = appRecordingRuleRepository
                    .findByAppIdAndPlatformAndTag(appEditDTO.getAppId(), appEditDTO.getPlatform(), appEditDTO.getTag());

1 个答案:

答案 0 :(得分:0)

就像您将使用SQL一样。使用DISTINCT关键字。

因此存储库中的方法名称应为

findDistinctByAppIdAndPlatformAndTag

请查看文档:

https://docs.spring.io/spring-data/jpa/docs/current/reference/html/