It seems to have eluded me. I know that I can use a map to return a set of vanilla strings from myBatis request, but how to do this with a list of primitive types?
eg. If I had SQL:
select product_price from products
Is resultMap required for this? I tried to use java.util.ArrayList as the result type, but get a class of not found errors.
In the same vein, how to pass a list of elements as an argument to a query.
Any input, pointers to documents are appreciated.
source share