posted 1 year ago
In my spring boot app, I ran a query in my service which takes 3 params that should populate a list of objects. Query is being called I was able to run the query in SQL developer but it does not populate the object.
OrderRepository is an interface with only 1 query.
List<myObject> myObj = repo.methodCall(p1, p2, p3);
myObj size shows 2 but it is [null, null]. Thanks.