Spring JPA QuerydslPredicate Snake Case
问题 I am using spring boot with Query DSL. I have configured my spring boot to use snake case i.e. spring.jackson.property-naming-strategy=SNAKE_CASE . So my json payload input and output is in snake case like below { "first_name": "First", "last_name": "Last" } I am using @QuerydslPredicate for my search functionality. If I enter query params in snake case like below (http://localhost:8080/context/resource/?first_name=First) it is not parsed by Query DSL Predicate. However, If I provide the