0
我有兩個簡單的域:One的更多關於Grails的搜索插件
public class Hotel {
static searchable = true
Source source
City city
HotelType type
long sourceid
float lat
float lon
static hasMany = [hotelTexts:HotelText]
static mapping = {
hotelTexts batchSize:10
}
}
public class HotelText {
static searchable = true
static belongsTo = [hotel:Hotel]
String lang
String name
String description
String address
static mapping = {
batchSize:10
description type:"text"
}
}
我在搜索插件完全新的,但我認爲它可以幫助我與我的問題。 所以,任務是按城市查找酒店,然後按名稱對排序結果。如果沒有選它可以而且很容易做到與動態查找幫助...
摘要:
- 查找城市的酒店。
- 按酒店名稱排序結果(給定語言)。
- 支持分頁。