hibarnate對象的映射文件以下數據庫
<id name="outlet" type="string">
<column name="OUTLET" length="10" />
<generator class="assigned" />
</id>
<!-- <property name="code" type="string">
<column name="CODE" length="10" />
</property> -->
<property name="code" type="string">
<column name="CODE" length="5" />
</property>
<property name="outline" type="string">
<column name="OUTLINE" length="5" />
</property>spa
在數據庫中outlet、code、outline爲聯合組件。hibarnate插入可如此插入code
if(null!=outlet){
String[] outlets1 = outlet.split(",");
String cade=discHd.getCode();
for(int i=0;i<outlets1.length;i++){
System.out.println(i+":"+outlets1[i]);
DiscS discS=new DiscS();
discS.setOutlet(outlets1[i]);
discS.setCode(cade);//不變
discS.setOutline("6");
discS.setUpdatedBy("0000001");
discSService.save(discS);
}
}對象
由於映射文件中的id定義爲outlet,而插入時是不相同的。因此能夠插入!get