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?

link|improve this question

66% accept rate
What do you have so far? Please paste some example code. – Tichodroma Feb 1 at 20:42
edited the question with an example. – sheki Feb 1 at 20:50
feedback

1 Answer

AFAIK, this is not possible using annotations. Not sure about xml.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.