http://people.apache.org/~simonetripodi/
http://www.99soft.org/
Personnaly, I don't use javaType with collection since javaType is usually guessed correctly by reflection.
Since your property is defined to be List, MyBatis will supply a valid implementation for you.
I find that bizarre that you are getting null. It is as if MyBatis does not try to set the property at all...
Christian
Still, I am unsure about what MyBatis does in your case...
<resultMap id="MySuperQueryMap"
type="gov.ssa.epecs.domain.SimpleDomain">
<id property="id" column="id" />
<result property="name" column="NAME"/>
<collection property="someStrings" ofType="string">
<result column="MYSTRING"/>
</collection>
</resultMap>
I guess it would be better and more comprehensible if you could use <collection property="someStrings" column="MYSTRING" ofType="string"/>.
So you can add a bug report for this at http://code.google.com/p/mybatis/wiki/Issues.