MyBatis XML映射器的以下代碼應將列'值'聚合到相應的數組中。MyBatis集合到數組類型
<resultMap id="cubeTextsHana" type="com.myDao">
<id property="attribute" column="attribute" javaType="String" />
<collection property="valueList" ofType="java.lang.String" javaType="String[]">
<result column="value" />
</collection>
不幸的是,這是行不通的,因爲MyBatis的規定Class/TypeAlias 'String[]' not found.
。當我更改javaType="list"
和DAO中的對應類型時,它工作正常。
有沒有辦法使用<collection>
與簡單的數組類型(例如字符串)而不是集合類型?發生在類