1

使用 Grails Searchable 插件,我有这些类:

class Person {
 static searchable = {
  address component: true
    }
}

和:

class Address {
 static searchable = {
  root false
 }
 String country
}

我想对来自特定国家的人进行特定搜索。“国家:NL”不起作用。“地址:国家:NL”也不起作用。我找不到有关此语法的任何信息。有任何想法吗?

我想我必须在可搜索的闭包中做一些聪明的索引或其他一些技巧,但我就是找不到它。

4

3 回答 3

3

我用你的两个类创建了一个基本应用程序(Grails 1.3.5,Searchable 0.5.5.1),搜索“country:NL”对我有用。你记得在尝试搜索之前调用 index() 吗?

grails create-app search
grains install-plugin searchable

人:

class Person {
  static searchable = {
    address component: true
  }

  Address address
}

地址:

class Address {
  static belongsTo = Person
  static searchable = {
    root false
  }
  String country
}

引导程序:

class BootStrap {

    def init = { servletContext ->

      def p1 = new Person(address:new Address(country:'NL')).save()
      def p2 = new Person(address:new Address(country:'DE')).save()
      def p3 = new Person(address:new Address(country:'NZ')).save()

      Person.index()

    }

    def destroy = {
    }
}

然后我浏览到 /searchable 并搜索 country:NL 并返回第 1 个人。

如果你想看看 Searchable 在字段/索引等方面做了什么 - Luke 是一个非常方便的工具(只需下载可执行的 JAR):http ://code.google.com/p/luke/

索引文件位于

<user.home>/.grails/projects/<project name>/searchable-index/development/index

干杯

于 2010-10-11T05:44:34.400 回答
0

有效的丑陋解决方案:不要依赖 Searchable。目前我先做 a Person.search(params.query, [max:99999]).results,然后做简单的 .findAll 来按国家查找,然后做 .sublist() 来让分页再次工作。

很遗憾,很难得到如此明显的东西来与 Searchable 一起工作。

我还没有开始工作的另一个解决方案是让 country 成为 Person 上的一个临时属性,它返回 address.country。没有开箱即用,我不知道如何修复它。

如果有人对我有更漂亮的解决方案,我很想听听。

于 2010-09-28T11:33:59.550 回答
0

我是 grails 的新手,但为什么必须使用可搜索插件?

简单的 1:1 或 1:n 关系有什么问题?

    package com.test
class Person {

        static constraints = {
          name (nullable:false)
          address (nullable:true)
        }

        String name
        Address address

        String toString() {
          "name[" + name + "]. address[" + address + "]"
        }

        static mapping = {
          address lazy:false
        }
    }


    class Address {

        static constraints = {
          country (nullable:false)
          town   (nullable:false)
        }
        String country
        String town
        //Person person

        static  belongsTo = [person:Person]
    //    static  belongsTo = Person

        String toString(){
          "town[" + town + "], country[" + country + "]"
        }
    }

        package com.test

        import grails.test.*

        class PersonIntegrationTestTests extends GrailsUnitTestCase {
            protected void setUp() {
                super.setUp()
            }

            protected void tearDown() {
                super.tearDown()
            }

            void testSomething() {
              def bill = new Person(name:'bill', address:new Address(town:'york', country:'UK')).save()
              def fred = new Person(name:'fred', address:new Address(town:'leeds', country:'UK')).save()
              def bjork = new Person(name:'helen', address:new Address(town:'helsinki', country:'finland')).save()
              def gustav = new Person(name:'john', address:new Address(town:'helsinki', country:'finland')).save()

              List ukAddresses = Address.findAllByCountry('UK') // find all by country

              println "num addresses-" + ukAddresses.size()

              for (int i in 0..<ukAddresses.size())
              {
                println "found person:" + ukAddresses[i].person
              }

              assertNotNull "bill can not ne null", bill
              assertTrue bill.validate() && !bill.hasErrors()
              assertTrue fred.validate() && !fred.hasErrors()
              assertTrue bjork.validate() && !bjork.hasErrors()
              assertTrue gustav.validate() && !gustav.hasErrors()

              assertEquals 2, ukAddresses.size()
            }
        }
于 2010-10-06T10:12:09.367 回答