我在我的項目中使用可搜索插件。我有一個簡單的域,其中給出如下 Class User {
String title
String Description
int vote
Date date
}
static searchable = {
only: ['description','title','vote','d
當兩個域 class State {
String name
static searchable = {
only: 'name'
}
}
class Region {
State state
String name
static searchable = {
state component: true
的集合我有一個Java模型是這樣的(某些字段省略): @Searchable(root=true)
class Person {
@SearchableProperty
String sex;
@SearchableProperty
String name;
}
class Parent extends Person {
@Searcha
我有一個可搜索的域類映射到具有標誌列的表。目前,當Lucene的創建它產生這樣的查詢索引(返回表中的所有數據): select this_.id as id0_0_,
this_.flag as flag2_0_0_,
this_.email as email0_0_, this_.first_name as first6_0_0_, this_.last_nam
我在使用和mapping.TableToResourceMapping設置@SearchableComponent對象時遇到問題。 試圖測試,我設置了兩個表映射爲對象(忽略ID的事情,除非這實際上是導致此問題): a
id (pk) | name | create_time | update_time
------------------------------------------
我使用的是grail的searchable plugin(0.6.4)。我需要根據隱私設置搜索會員。以下是db設計。 會員有MemberProfile, and MemberProfile has PrivacySettings class Member extends {
String firstName
String lastName
static searc