| 
					
						 Hi All,
 
 I'm tring to put a Set or Map in a component, but it never work. Can anyone show me an example? Thank you very much!
 
 Here's my bad codes:
 
 <class name="OpportunitySSRFVo" table="OPPORTUNITY">
    <id name="id" column="OP_ID" >
    </id>
    <component name="info" class="OpportunityInfoVo" lazy="false" >
      <property name="opportunityName" column="OPPORTUNITY_NAME" />
      <set name="competitorIDs" lazy="false" inverse="true" outer-join="true" cascade="all"  sort="natural" table="OPPORTUNITY_COMPETITOR">
        <key column="OP_ID"/>
        <element type="string" column="COMPETITOR_ID"/>
      </set>   
    </component>
 </class> 
					
  
						
					 |