I would like to write a like query in JpaRepository but it is not obeying the like query :
LIKE "abc" and "abc.com" are two string and when we do like :
@Query("Select * from table_name where column_name like ?0'%' ALLOW FILTERING ")
List<entity> findPlaceContainingKeywordAnywhere(String keyword)
it is returning both the values when we pass :
repository.findPlaceContainingKeywordAnywhere("abc.")