Hi, I am using hibernate core 3.6.3.Final. I haven't enabled progress monitor. I am using Spring 3.0.5, JPA and Hibernate. While saving new entities, indexing works fine. I can browse using LUKE. Only issue is with reindexing. I am not getting any error logs. Following is the piece of code using for reindexing. try{ FullTextEntityManager fullTextEntityManager = Search.getFullTextEntityManager(entityManager); fullTextEntityManager.createIndexer().startAndWait(); }catch(InterruptedException e){ e.printStackTrace(); }
And i have only few data in the database. I am using mysql.
Thanks, Ramesh
|