I'm afraid Evgeny's solution only seems to work because there is a small bug in the code sample:
inString = "," + element;
Which means that inString always only contains a single, last number (instead of a list of concatenated numbers).
This should in fact be
inString += "," + element;
Alas, if this error is corrected the database starts reporting "incorrect number" exceptions because mybatis sets "1,2,3" as a string parameter and the database simply tries to convert this string to a number : /
On the other hand, the @SelectProvider annotation, as described by Mohit, works fine.
One must only be aware, that it creates a new statement each time we run the query with different parameters inside the IN-clause rather than reuse the existing PreparedStatement (as the parameters inside the IN-Clause are being hardcoded inside the SQL instead of being set as prepared statement's parameters). This can sometimes lead to memory leaks in the Database (as the DB needs to store more and more prepared statements and it will potentially not reuse existing execution plans).
One can try to mix both @SelectProvider and custom typeHandler. This way one can use the @SelectProvider to create a query with as many placeholders inside "IN (...)" as necessary and then replace them all in the custom TypeHandler. It gets a bit tricky, though.