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.
以下代码没有任何问题。它工作正常。我只是有一个关于在 HQL 中将列表作为参数传递的问题。我在这样的 HQL 查询中使用 IN 子句:
AND l.creditGlCode IN (?3)
然后像这样设置参数:
aQuery.setParameter(3, glCodes);
HashSetglcodes包含字符串。将 glcode 作为 HQL 中的参数传递时,glcode 的最大大小是多少?我记得在某处读到有限制,但通过无数次谷歌搜索我找不到答案。
glcodes
我希望这将有所帮助。 https://hibernate.onjira.com/browse/HHH-1123