How to query mongodb with “like” using the java api?

前端 未结 7 1947
谎友^
谎友^ 2020-12-14 00:59

this question is very similar to another post

I basically want to use the mongodb version of the sql \"like\" \'%m%\' operator

but in my situation i\'m using

7条回答
  •  刺人心
    刺人心 (楼主)
    2020-12-14 01:12

    In spring data mongodb, this can be done as:

    Query query = new Query();
    query.limit(10);        
    query.addCriteria(Criteria.where("tagName").regex(tagName));
    mongoOperation.find(query, Tags.class);
    

提交回复
热议问题