1 Reply Latest reply on Jul 8, 2010 3:59 PM by gaborj

    Specifying Lucene Analyzer in Seam Application

    oyesiji77

      Please how can i specify an Analyzer for my application. I am using Lucene in my seam 2 Application

        • 1. Re: Specifying Lucene Analyzer in Seam Application
          gaborj

          Lucene classes are completely independent of Seam, so you do it exactly the same way as without Seam. You can even define class without reference like:


          ...
          QueryParser parser = new MultiFieldQueryParser(yourFields, new StandardAnalyzer(), boostPerField);
          ...



          this is nothing to do with Seam.