Myslím, že stačí použít
IN :stringId
místo
IN (:stringId)
Pro JPA
namedQuery.setParameter("stringId", strIds);
je správné, ale pro režim spánku byste měli použít
namedQuery.setParameterList("stringId", strIds);
Myslím, že stačí použít
IN :stringId
místo
IN (:stringId)
Pro JPA
namedQuery.setParameter("stringId", strIds);
je správné, ale pro režim spánku byste měli použít
namedQuery.setParameterList("stringId", strIds);