How mybatis plus saves the string array to the database

how mybatis plus saves string arrays, arrays like [xxx,xxx] to the database.

currently using
< result column= "department" jdbcType= "VARCHAR" property= "department"

in xml
            typeHandler="com.springboot.config.JsonStringArrayTypeHandler"/>
            

can be saved to the database, but do not want to write xml, is there any other way?

Apr.01,2022

jdbcType = "ARRAY"?

Menu