Node parent = new Node( "1:parent" );
Node child = new Node( "2:child" );
Node grandchild = new Node( "3:grandchild" );
parent.addChild( child );
child.addChild( grandchild );
s.saveOrUpdate( parent );
s.getTransaction().commit();
s.close();
Session s1 = openSession();
s1.getTransaction().begin();