In the Hibernate Seach reference manual (
http://www.hibernate.org/hib_docs/searc ... ation.html) Section 3.6, there is a piece of XML as below
<hibernate-configuration>
<session-factory>
...
<event type="post-update"
<listener class="org.hibernate.search.event.FullTextIndexEventListener"/>
</event>
<event type="post-insert"
<listener class="org.hibernate.search.event.FullTextIndexEventListener"/>
</event>
<event type="post-delete"
<listener class="org.hibernate.search.event.FullTextIndexEventListener"/>
</event>
</session-factory>
</hibernate-configuration>
There is no closing brace for event tag. Even if I put that while developing my application, it's throwing an exception. Could someone help me out please.
Thanks,
Raghav