Here is the query that I'm trying to get to work on Spring 4 with Hibernate and JPA. How do you write a query for SELECT IN?
@Query("SELECT d FROM DaybookCalendar d WHERE uuid IN ? ")
public List<DaybookCalendar> findByUuids(List<String> calendarIds);