Hi,
I am using iBatis 3.0 beta-9
How can inheritance or has-a relationship be specified for the following
case?

class A
   name: String

class B extends A
   id: Integer

 
Currently, I was trying to use "has-a" relationship - association to do it -
but, it is not working!
    <resultMap id="A" type="org.XXX.A">       
        <result property="name" column="name" />
        <association property="B" column="a_b_id" javaType="org.XXX.B"/>
    </resultMap>

     <association property="B" column="a_b_id" javaType="org.XXX.B">
        <id property="id" column="id" />
    </association>
-- 
View this message in context: 
http://old.nabble.com/Inheritanc-tp28985663p28985663.html
Sent from the iBATIS - User - Java mailing list archive at Nabble.com.


---------------------------------------------------------------------
To unsubscribe, e-mail: user-java-unsubscr...@ibatis.apache.org
For additional commands, e-mail: user-java-h...@ibatis.apache.org

Reply via email to