“No property exists found for type”… When using the QueryDslPredicateExecutor with MongoDB and Spring-Data

前端 未结 2 1805
南笙
南笙 2021-01-18 17:33

I\'m trying to use the QueryDslPredicateExecutor with MongoDB and Spring-Data, but it seems to be choking on the \"exists()\" property.

I\'m using -



        
2条回答
  •  感情败类
    2021-01-18 18:28

    Changing

    extends SimpleJpaRepository

    for

    extends QueryDslJpaRepository

    in my base JPA repo impl made it for me.

提交回复
热议问题