Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
它是正确的语法吗?该地图包含多个值并转换为数组。
criteria.add(Restrictions.like("os", "%"+( ((ArrayList<String>)map.get("os") ).toArray())+"%" ) )
它是正确的语法吗?
您需要遍历 map 中的条目,并为每个条目添加一个
Restrictions.like("os", "%"+entry+"%" )
与那些一起加入
Restrictions.or(...)
使用完整的集合添加到条件中
criteria.add