Với Spring CrudRepository Query; Tôi muốn chọn các thực thể "DeviceType" có thuộc tính "name". Nhưng sau khi truy vấn chọn các quyền theo cách phân biệt chữ hoa chữ thường. Làm thế nào tôi làm cho nó không phân biệt chữ hoa chữ thường. Cảm ơn.
public interface DeviceTypeRepository extends CrudRepository<DeviceType, Integer>, JpaSpecificationExecutor<DeviceType> {
public Iterable<DeviceType> findByNameContaining(String name);
}
public Iterable<DeviceType> findByNameIgnoreCaseContaining(String name);
?