Are there any examples for inserting a collection into a Database (MySQL) using a single query using MyBatis annotations and not the XML?
I have the following query in a MyBatis DAO.
@Insert("insert into deleted_items(item_id) " + "values (#{itemID})")
int put(String itemID);
I want to insert a List<String> using the same query as above, just allow for multiple values.
How can I do that using only annotations?