如何编写 Hibernate Criteria 来匹配不区分大小写并修剪空格?

发布于 2024-12-08 23:19:52 字数 300 浏览 0 评论 0原文

目前,我对 MyClass 的条件有限制,无法匹配 MyClass.propertyName 的值:

Restrictions.ilike("propertyName", matchString)

是否可以匹配 MyClass.propertyName 的值> 带有前导或尾随空格?


这是我试图匹配的正则表达式等效项:

\s*foo(\s*|\s+.*)

I currently have a restriction on a criteria of MyClass to match values of MyClass.propertyName:

Restrictions.ilike("propertyName", matchString)

Is it possible for this to match values of MyClass.propertyName with leading or trailing whitespace?


Here is the regex equivalent of what I am trying to match:

\s*foo(\s*|\s+.*)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

风轻花落早 2024-12-15 23:19:52

如果 matchString"%foo%",并且 propertyName 值为 " foo ",则限制将接受此属性。这就是使用 like 运算符的全部意义。

If matchString is "%foo%", and the propertyName value is " foo ", then the restriction will accept this property. That's the whole point of using the like operator.

弃爱 2024-12-15 23:19:52

有 2 种方法可以做到这一点:

  1. 使 matchString 类似于:"%foo%"
  2. 使用特定限制:
    Restrictions.ilike("propertyName", matchString, MatchMode.ANYWHERE)

There is 2 way to do it:

  1. Make matchString like: "%foo%"
  2. Use Restriction specific:
    Restrictions.ilike("propertyName", matchString, MatchMode.ANYWHERE)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文