创建自定义 JPA 查询函数

发布于 2025-01-06 16:17:15 字数 189 浏览 0 评论 0原文

我正在使用 EclipseLink。可以使用自定义查询功能,例如:

从用户 u 中选择 u,其中 my_function(u.name) = my_function(:param)

我想根据自定义创建的 slug 名称而不是 id 检索实体(并从 url 中删除任何 id)

I'm using EclipseLink. Is is possible to use custom query function like:

Select u from User u where my_function(u.name) = my_function(:param)

I would like to retrive entities based on custom created slug names rather than id (and remove any id's from url)

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

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

发布评论

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

评论(1

如果你将它实现为数据库中的函数,那么这是可能的,否则就不行(因为它最终会转换为 SQL,无论如何调用用 Java 实现的方法是不可能的)。关键字func用于调用数据库函数:

Select u from User u 
where func('my_function', u.name) = func('my_function', :param)

If you implement it as function in database then it is possible, otherwise not (because it translates to SQL in the end anyway calls to method implemented with Java are not possible). Keyword func is used to call database function:

Select u from User u 
where func('my_function', u.name) = func('my_function', :param)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文