标签: spring mongodb spring-boot repository
我正在为POJO使用mongo存储库,需要使用正则表达式来获取一些数据。
class A { String str; }
在控制器中,
String s = "/xyz"; repositoryA.findByStrLike(s + "/[a-zA-Z0-9]*$")
以上调用不是使用Str" / xyz / string"返回对象;虽然它存在。