-->
These old forums are deprecated now and set to read-only. We are waiting for you on our new forums!
More modern, Discourse-based and with GitHub/Google/Twitter authentication built-in.

All times are UTC - 5 hours [ DST ]



Forum locked This topic is locked, you cannot edit posts or make further replies.  [ 3 posts ] 
Author Message
 Post subject: fulltextsearch from a seam entityquery
PostPosted: Thu May 06, 2010 11:05 am 
Newbie

Joined: Mon Apr 19, 2004 5:56 am
Posts: 9
Hi all,
i would like to perform a full text search from a seam entityquery.
Is it possible ?

Best Regards.


Top
 Profile  
 
 Post subject: Re: fulltextsearch from a seam entityquery
PostPosted: Thu May 06, 2010 12:29 pm 
Hibernate Team
Hibernate Team

Joined: Thu Apr 05, 2007 5:52 am
Posts: 1689
Location: Sweden
If your questions is whether you can use Hibernate Search within Seam, then the answer is yes. Provided you have the right version mix (Seam, Hibernate Core and Search).

If you are after something else I would recommend you clarify your question/usecase a little more.

--Hardy


Top
 Profile  
 
 Post subject: Re: fulltextsearch from a seam entityquery
PostPosted: Fri May 07, 2010 6:37 am 
Newbie

Joined: Mon Apr 19, 2004 5:56 am
Posts: 9
ok,
i would like to perform full text search fron a seam entity query with paging, order by
instead of using an entityAction.

For instance :

Code:

@Name("alternateActivityQuery")
public class AlternateActivityQuery extends EntityQuery<AlternateActivity> {


   private static final long serialVersionUID = 3937355816459756502L;

   private static final String EJBQL = "select al from AlternateActivity al";

   private static final String[] RESTRICTIONS = {
      "lower(p.name) like concat(lower(#{exampleAlternateActivity.name}),'%')"
   };

   public AlternateActivityQuery() {
      setEjbql(EJBQL);
      setRestrictionExpressionStrings(Arrays.asList(RESTRICTIONS));
      setMaxResults(50);
      
   }

   
   
   

   
   

}




Best Regards


Top
 Profile  
 
Display posts from previous:  Sort by  
Forum locked This topic is locked, you cannot edit posts or make further replies.  [ 3 posts ] 

All times are UTC - 5 hours [ DST ]


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum

Search for:
© Copyright 2014, Red Hat Inc. All rights reserved. JBoss and Hibernate are registered trademarks and servicemarks of Red Hat, Inc.