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.
如何在 setParameter 休眠查询中设置枚举值。
query.setParameter( "keyValue", Enum.valueOf(, KeywordType.specific));
假设枚举是KeywordType并且您想传递specific此枚举的实例:
KeywordType
specific
query.setParameter("keyValue", KeywordType.specific);
就像您在其他任何地方使用枚举一样。