正则表达式 – Morphia mongoDB通配符查询

栏目: 数据库 · 发布时间: 5年前

内容简介:翻译自:https://stackoverflow.com/questions/12371299/morphia-mongodb-wildcard-query

直截了当的问题,是否有人知道如何使用链接到 mongoDB 数据库的morphia进行通配符查询?

这就是mongo语句的样子:

Mongo:db.users.find({name:/ Joe /})

SQL:SELECT * FROM users WHERE name LIKE“%Joe%”

我的morphia语句如下:

Morphia:ds.find(File.class,“filename”,“/ test /”).order(“filename”).asList();

我的数据库中有文件名,例如test1,test等

如果有人可以请告诉我,如果甚至可以使用吗啡,我将非常感激.

谢谢

你所谓的“通配符”实际上是“ Regular Expression ”.

表示正则表达式的 Java 类是 Pattern .您可以将它们传递给Morphia的Query对象的过滤器方法.

// create a regular expression which matches any string which includes "test"
Pattern regexp = Pattern.compile("test");
// use this regular expression to create a query
Query q = ds.createQuery(File.class).filter("filename", regexp).sort("filename");

翻译自:https://stackoverflow.com/questions/12371299/morphia-mongodb-wildcard-query


以上所述就是小编给大家介绍的《正则表达式 – Morphia mongoDB通配符查询》,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对 码农网 的支持!

查看所有标签

猜你喜欢:

本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们

Uberland

Uberland

Alex Rosenblat / University of California Press / 2018-11-19 / GBP 21.00

Silicon Valley technology is transforming the way we work, and Uber is leading the charge. An American startup that promised to deliver entrepreneurship for the masses through its technology, Uber ins......一起来看看 《Uberland》 这本书的介绍吧!

HTML 编码/解码
HTML 编码/解码

HTML 编码/解码

XML 在线格式化
XML 在线格式化

在线 XML 格式化压缩工具

Markdown 在线编辑器
Markdown 在线编辑器

Markdown 在线编辑器