Package org.hibernate.search.test.configuration

Examples of org.hibernate.search.test.configuration.Item


  }

  private void storeDemoData(FullTextSessionBuilder builder) {
    FullTextSession fullTextSession = builder.openFullTextSession();
    Transaction transaction = fullTextSession.beginTransaction();
    Item ssd = new Item();
    ssd.setDescription( "intel solid state disk" );
    Item wd = new Item();
    wd.setDescription( "western digital hibrid disk" );
    fullTextSession.persist( ssd );
    fullTextSession.persist( wd );
    transaction.commit();
    fullTextSession.close();
  }
View Full Code Here

TOP

Related Classes of org.hibernate.search.test.configuration.Item

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.