创建自定义 JPA 查询函数
我正在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果你将它实现为数据库中的函数,那么这是可能的,否则就不行(因为它最终会转换为 SQL,无论如何调用用 Java 实现的方法是不可能的)。关键字func用于调用数据库函数:
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: