Avoid duplicate sort orders through Keyset scrolling.

We now avoid adding sort properties if they are already specified by Sort.

Closes #2996
This commit is contained in:
Mark Paluch
2023-06-08 09:47:40 +02:00
parent 90de69354a
commit 2e489cb4fc
2 changed files with 91 additions and 2 deletions

View File

@@ -22,6 +22,8 @@ import jakarta.persistence.criteria.From;
import jakarta.persistence.criteria.Predicate;
import jakarta.persistence.criteria.Root;
import java.util.ArrayList;
import java.util.Collection;
import java.util.List;
import org.springframework.data.domain.KeysetScrollPosition;
@@ -61,11 +63,21 @@ public record KeysetScrollSpecification<T> (KeysetScrollPosition position, Sort
KeysetScrollDelegate delegate = KeysetScrollDelegate.of(position.getDirection());
Collection<String> sortById;
Sort sortToUse;
if (entity.hasCompositeId()) {
sortToUse = sort.and(Sort.by(entity.getIdAttributeNames().toArray(new String[0])));
sortById = new ArrayList<>(entity.getIdAttributeNames());
} else {
sortToUse = sort.and(Sort.by(entity.getRequiredIdAttribute().getName()));
sortById = new ArrayList<>(1);
sortById.add(entity.getRequiredIdAttribute().getName());
}
sort.forEach(it -> sortById.remove(it.getProperty()));
if (sortById.isEmpty()) {
sortToUse = sort;
} else {
sortToUse = sort.and(Sort.by(sortById.toArray(new String[0])));
}
return delegate.getSortOrders(sortToUse);

View File

@@ -0,0 +1,77 @@
/*
* Copyright 2023 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.springframework.data.jpa.repository.query;
import static org.assertj.core.api.Assertions.*;
import jakarta.persistence.EntityManager;
import jakarta.persistence.PersistenceContext;
import org.junit.jupiter.api.Test;
import org.junit.jupiter.api.extension.ExtendWith;
import org.springframework.data.domain.ScrollPosition;
import org.springframework.data.domain.Sort;
import org.springframework.data.domain.Sort.Order;
import org.springframework.data.jpa.domain.sample.SampleWithIdClass;
import org.springframework.data.jpa.domain.sample.User;
import org.springframework.data.jpa.repository.support.JpaMetamodelEntityInformation;
import org.springframework.test.context.ContextConfiguration;
import org.springframework.test.context.junit.jupiter.SpringExtension;
import org.springframework.transaction.annotation.Transactional;
/**
* Unit tests for {@link KeysetScrollSpecification}.
*
* @author Mark Paluch
*/
@ExtendWith(SpringExtension.class)
@ContextConfiguration({ "classpath:infrastructure.xml" })
@Transactional
class KeysetScrollSpecificationUnitTests {
@PersistenceContext EntityManager em;
@Test // GH-2996
void shouldAddIdentifierToSort() {
Sort sort = KeysetScrollSpecification.createSort(ScrollPosition.keyset(), Sort.by("firstname"),
new JpaMetamodelEntityInformation<>(User.class, em.getMetamodel(),
em.getEntityManagerFactory().getPersistenceUnitUtil()));
assertThat(sort).extracting(Order::getProperty).containsExactly("firstname", "id");
}
@Test // GH-2996
void shouldAddCompositeIdentifierToSort() {
Sort sort = KeysetScrollSpecification.createSort(ScrollPosition.keyset(), Sort.by("first", "firstname"),
new JpaMetamodelEntityInformation<>(SampleWithIdClass.class, em.getMetamodel(),
em.getEntityManagerFactory().getPersistenceUnitUtil()));
assertThat(sort).extracting(Order::getProperty).containsExactly("first", "firstname", "second");
}
@Test // GH-2996
void shouldSkipExistingIdentifiersInSort() {
Sort sort = KeysetScrollSpecification.createSort(ScrollPosition.keyset(), Sort.by("id", "firstname"),
new JpaMetamodelEntityInformation<>(User.class, em.getMetamodel(),
em.getEntityManagerFactory().getPersistenceUnitUtil()));
assertThat(sort).extracting(Order::getProperty).containsExactly("id", "firstname");
}
}