Xin lỗi nếu ý kiến của tôi không rõ ràng. Bạn phải gửi đối chiếu với truy vấn sắp xếp.
Sức mạnh chính và phụ cả hai sẽ cung cấp sắp xếp không phân biệt chữ hoa chữ thường. Đảm bảo rằng bạn sử dụng tiêu chí đối chiếu chính xác trong truy vấn sắp xếp của mình để tận dụng chỉ mục.
Sort.Order order = new Sort.Order(ascending? Sort.Direction.ASC: Sort.Direction.DESC, sortKey);
Query query = new Query(filter).with(new PageRequest(page, size, new Sort(order)));
query.collation(Collation.of("en").strength(Collation.ComparisonLevel.secondary()));
return mongoTemplate.find(query, clazz,collection);