MyBatis - 如何在 mybatis xml 映射器文件中定义数组

MyBatis - how to define array in mybatis xml mapper file

我想在 mybatis 映射器中定义字符串数组并将其作为参数传递给 java 静态方法。 可能吗?

找到一个解决方案,我可以在 'bind' 标签中定义数组,然后将它作为参数传递给方法:

        <bind name='exampleArray' value='{"one", "two", "three"}'/>
        ${@com.example.MybatisUtil@generate(exampleArray)}