6162636465666768697071
for (String tag : computeTags) { if(tag != null){ tag = tag.trim(); if(tag.length() > 0) { VMComputeTagVO vo = new VMComputeTagVO(vmId, tag); persist(vo); } } } txn.commit();
5960616263646566676869
for (String tag : computeTags) { if (tag != null) { tag = tag.trim(); if (tag.length() > 0) { VMComputeTagVO vo = new VMComputeTagVO(vmId, tag); persist(vo); } } } txn.commit();