Hi!
We have an index working with entitymanager persist method adding object to the index but entitymanager merge method is not updating the index.
Both methods use @Transactional and we have
Code:
<bean id="transactionManager" class="org.springframework.orm.jpa.JpaTransactionManager">
<property name="entityManagerFactory" ref="entityManagerFactory" />
</bean>
as transactionmanager. I read that it might be an issue with transactionmanager. Is this true?
We are indexing a method on the object not a field. The method combines different text based on language.
Some versions:
hibernate-jpa-2.0-api-1.0.0.Final.jar
hibernate-entitymanager-3.6.3.Final.jar
lucene-core-3.1.0.jar
hibernate-core-3.6.3.Final.jar
hibernate-search-3.4.0.Final.jar
Any help is appreciated.