I would like to find the equivalent of LIKE in mongodb spring

Here is the request with the exact match

query.addCriteria(Criteria.where(field).is("myfield"))

I would like something like:

query.addCriteria(Criteria.where(field).LIKE("myfield"))
有帮助吗?

解决方案

You can try making it regex, this results in the same ouput like in the case of LIKE.

Criteria.where(field).regex("myfield", "i");

Note that i stands for case-insensitive.

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top