[Hibernate Search][1] is a Hibernate sub-project adding full text search capabilities to your persistence domain model by integrating [Apache Lucene][2] with Hibernate ORM. [1]: http://www.hibernate.org/subprojects/search.html [2]: http://lucene.apache.org/

learn more… | top users | synonyms

0
votes
1answer
180 views

What is the Best method to access hiberante search (lucene) files on amazon s3

I am using amazon s3 to host my website (so far - very impressed), however, I want to host my hibernate search index files and subdirectories in a manner that will scale. Could I use the Amazon s3 ...
2
votes
4answers
1k views

How to not transform special characters to html entities with owasp antisamy

I use Owasp Anti samy with Ebay policy file to prevent XSS attacks on my website. I also use Hibernate search to index my objects. When I use this code: String html = "special word: été"; // ...
2
votes
2answers
2k views

Query in Lucene

The structure of the table "testtable" is id int primary key productid int attributeid int value varchar(250) where productid is the unique id of a product, attributeid is the unique id of ...
4
votes
3answers
3k views

hibernate search + spring3 + jpa

I'm trying to integrate hibernate search in my project. My models are indexed, but for some reason my search queries do not return any results. I've been trying to solve this issue for a few hours ...
2
votes
1answer
351 views

How to handle Hibernate-Search index recovery?

When an application server exits unexpectedly, Hibernate Search can not do a graceful shutdown of Lucene. Leaving write.lock files behind in each index directory. That is of course quite normal. But - ...
1
vote
1answer
29 views

DuplicateFilter in Hibernate Search

I know there is a built-in DuplicateFilter in Lucene, to deduplicate the results from lucene. This is a very important feature for the users to search on the document database, where duplicating rate ...
1
vote
1answer
2k views

FullTextHibernateSessionProxy is not visible from class loader

I have run into a very strange error that I can´t wrap my head around. I´m running Seam 2.2.1.CR2 and JBoss 4.3.0.GA. My application consist of 3 modules: application.xml ...
1
vote
3answers
744 views

Lucene wildcard matching fails on chemical notations(?)

Using Hibernate Search Annotations (mostly just @Field(index = Index.TOKENIZED)) I've indexed a number of fields related to a persisted class of mine called Compound. I've setup text search over all ...
0
votes
2answers
183 views

Hibernate Search + Spring + JPA + 2 webapps - correct configuration

I have search long and hard, and cannot find a definitive answer. I have 2 webapps running on a single instance of tomcat: /server and /ROOT I have configured Hibernate Search configured for one of ...
0
votes
1answer
156 views

Does Lucene support searching between multiple index documents?

In Database : I have two tables. and there are three columns in each table. Table_A (column_primaryKey_A,column_A1,column_A2) Table_B (column_primaryKey_B,column_B1,column_B2) Below is the SQL that ...
0
votes
1answer
245 views

Lucene hibernate search NumericRangeQuery<Float> not working on field defined with @NumericField

I use hibernate search 4.1.0 with good results except for this problem. I´m trying to perform a range search in a column defined: @Field(name = "startTime", store = Store.YES) @NumericField public ...
0
votes
1answer
632 views

Error deploying Seam 2.2 app on JBoss 7.1

I've been trying to deploy my JBoss Seam 2.2 application on JBoss 7.1. I've received some great advice and resources from my previous post, but now I'm encountering some errors. My application is ...
-1
votes
1answer
272 views

Join query in hibernate search

I want to write a lucene query like " from activity where metaentityByEntity.id in(select metaentityByEntity.id from userentity where user.id=1)" My domain classes are: public class Activity ...