Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
1answer
5k views

java.lang.NoSuchMethodError: javax.persistence.OneToMany.orphanRemoval()Z

I am getting this error: java.lang.NoSuchMethodError: javax.persistence.OneToMany.orphanRemoval()Z These are the jars in my classpath: com.sun.faces/jsf-api/jars/jsf-api-2.0.0.jar ...
3
votes
1answer
1k views

nHibrnate.Search with nHibernate v2

I having trouble getting nHibernate.Search to create an Index. If I use 1.2.1.4 of nHibernate.dll & nHibernate.Search.dll then the index is created correctly and I can inspect it with Luke (a ...
2
votes
1answer
280 views

(N)Hibernate.Search : Index different properties in one field

When I was using Lucene to index my entities, I had the habit of putting all my indexed properties in a field named "all", to perform a search on "all" of my entities types. Now, using ...
1
vote
1answer
387 views

Hibernate Search Error

Can someone help, i'm trying a simple example with hibernate search but getting the following error: Exception in thread "main" org.hibernate.HibernateException: could not init listeners at ...
1
vote
2answers
196 views

Using Hibernate Search to Rate Result

Is it possible for hibernate search to sort result according to best match after it has search result from the database
1
vote
1answer
908 views

JPA HibernateSearch Projections

I'm trying to use JPA with HibernateSearch. I used Example 5.3 in http://docs.jboss.org/hibernate/stable/search/reference/en/html/search-query.html. The results come out as expected. However, the ...