I need to generate fulltext query with multiple paramters.
select * from contents where match(categoryIds) against('"14" "21"' IN BOOLEAN MODE);
in Criteria api
Restrictions.fts('categoryIds', 14, 21);
in HQL
"from Content c where fts('c.categoryIds', 14, 21)"