Lets say we have this repository:
public interface DeviceTypeRepository extends CrudRepository<DeviceType, Integer>, JpaSpecificationExecutor<DeviceType> {
public Iterable<DeviceType> findByNameContaining(String name);
}
How to obtain the same results by ignoring when user mistypes accents ni search filter?
Examples: João | Joao | JOÃO
, Marcio | Márcio
etc.