71727374757677787980818283
Session s; Transaction tx; s = openSession(); tx = s.beginTransaction(); Carrot c = new Carrot(); VegetablePk pk = new VegetablePk(); pk.setFarmer( "Bill" ); pk.setHarvestDate( "2004-08-15" ); c.setId( pk ); c.setLength( 23 ); s.persist( c ); tx.commit(); s.close();