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

前端 未结 7 1900
谎友^
谎友^ 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:37

    if(searchType.equals("employeeId")) {

    query.addCriteria(Criteria.where(searchType).regex(java.util.regex.Pattern.compile(searchValue)));

    employees = mongoOperations.find(query, Employee.class, "OfficialInformation"); }

提交回复
热议问题