- 浏览: 850218 次
文章分类
- 全部博客 (365)
- java (124)
- spring mvc (21)
- spring (22)
- struts2 (6)
- jquery (27)
- javascript (24)
- mybatis/ibatis (8)
- hibernate (7)
- compass (11)
- lucene (26)
- flex (0)
- actionscript (0)
- webservice (8)
- rabbitMQ/Socket (15)
- jsp/freemaker (5)
- 数据库 (27)
- 应用服务器 (21)
- Hadoop (1)
- PowerDesigner (3)
- EJB (0)
- JPA (0)
- PHP (2)
- C# (0)
- .NET (0)
- html (2)
- xml (5)
- android (7)
- flume (1)
- zookeeper (0)
- 证书加密 (2)
- maven (1)
- redis (2)
- cas (11)
最新评论
-
zuxianghuang:
通过pom上传报错 Artifact upload faile ...
nexus上传了jar包.通过maven引用当前jar,不能取得jar的依赖 -
流年末年:
百度网盘的挂了吧???
SSO单点登录系列3:cas-server端配置认证方式实践(数据源+自定义java类认证) -
953434367:
UfgovDBUtil 是什么类
Java发HTTP POST请求(内容为xml格式) -
smilease:
帮大忙了,非常感谢
freemaker自动生成源代码 -
syd505:
十分感谢作者无私的分享,仔细阅读后很多地方得以解惑。
Nginx 反向代理、负载均衡、页面缓存、URL重写及读写分离详解
compass站内搜索:
1.去官方网站下载compass的jar包,我用的的2.1版本
http://www.compass-project.org/
ProductInfo.java
@Entity
@Searchable
public class ProductInfo implements Serializable{
private static final long serialVersionUID = -8860864584425256200L;
private Integer id;
/** 货号 **/
private String code;
/** 产品名称 **/
private String name;
/** 产品类型 **/
private ProductType type;
/** 产品样式 **/
private Set<ProductStyle> styles = new HashSet<ProductStyle>();
public ProductInfo() {}
@OneToMany(cascade={CascadeType.REMOVE,CascadeType.PERSIST}, mappedBy=”product”,fetch=FetchType.EAGER)
@OrderBy(“visible desc, id asc”)
@SearchableReference
public Set<ProductStyle> getStyles() {
return styles;
}
public void setStyles(Set<ProductStyle> styles) {
this.styles = styles;
}
@Id @GeneratedValue
@SearchableId
public Integer getId() {
return id;
}
public void setId(Integer id) {
this.id = id;
}
@Column(length=30)
@SearchableProperty(index = Index.TOKENIZED, store = Store.YES)
public String getCode() {
return code;
}
public void setCode(String code) {
this.code = code;
}
@Column(length=50,nullable=false)
@SearchableProperty(index = Index.TOKENIZED, store = Store.YES)
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
@ManyToOne(cascade=CascadeType.REFRESH,optional=false)
@JoinColumn(name=”typeid”)
@SearchableReference
public ProductType getType() {
return type;
}
public void setType(ProductType type) {
this.type = type;
}
@Override
public int hashCode() {
final int prime = 31;
int result = 1;
result = prime * result + ((id == null) ? 0 : id.hashCode());
return result;
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (getClass() != obj.getClass())
return false;
final ProductInfo other = (ProductInfo) obj;
if (id == null) {
if (other.id != null)
return false;
} else if (!id.equals(other.id))
return false;
return true;
}
}
@Entity
@Searchable
public class ProductInfo implements Serializable{
private static final long serialVersionUID = -8860864584425256200L;
private Integer id;
/** 货号 **/
private String code;
/** 产品名称 **/
private String name;
/** 产品类型 **/
private ProductType type;
/** 产品样式 **/
private Set<ProductStyle> styles = new HashSet<ProductStyle>();
public ProductInfo() {}
@OneToMany(cascade={CascadeType.REMOVE,CascadeType.PERSIST}, mappedBy=”product”,fetch=FetchType.EAGER)
@OrderBy(“visible desc, id asc”)
@SearchableReference
public Set<ProductStyle> getStyles() {
return styles;
}
public void setStyles(Set<ProductStyle> styles) {
this.styles = styles;
}
@Id @GeneratedValue
@SearchableId
public Integer getId() {
return id;
}
public void setId(Integer id) {
this.id = id;
}
@Column(length=30)
@SearchableProperty(index = Index.TOKENIZED, store = Store.YES)
public String getCode() {
return code;
}
public void setCode(String code) {
this.code = code;
}
@Column(length=50,nullable=false)
@SearchableProperty(index = Index.TOKENIZED, store = Store.YES)
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
@ManyToOne(cascade=CascadeType.REFRESH,optional=false)
@JoinColumn(name=”typeid”)
@SearchableReference
public ProductType getType() {
return type;
}
public void setType(ProductType type) {
this.type = type;
}
@Override
public int hashCode() {
final int prime = 31;
int result = 1;
result = prime * result + ((id == null) ? 0 : id.hashCode());
return result;
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (getClass() != obj.getClass())
return false;
final ProductInfo other = (ProductInfo) obj;
if (id == null) {
if (other.id != null)
return false;
} else if (!id.equals(other.id))
return false;
return true;
}
}
ProductType.java
@Entity
@Searchable
public class ProductType implements Serializable{
private static final long serialVersionUID = 8106351120886053881L;
/** 类别id **/
private Integer typeid;
/** 类别名称 **/
private String name;
/** 子类别 **/
private Set<ProductType> childtypes = new HashSet<ProductType>();
/** 所属父类 **/
private ProductType parent;
private Set<ProductInfo> products = new HashSet<ProductInfo>();
@OneToMany(mappedBy=”type”, cascade=CascadeType.REMOVE)
@SearchableReference
public Set<ProductInfo> getProducts() {
return products;
}
public void setProducts(Set<ProductInfo> products) {
this.products = products;
}
public ProductType() {}
@ManyToOne(cascade=CascadeType.REFRESH)
@JoinColumn(name=”parentid”)
public ProductType getParent() {
return parent;
}
public void setParent(ProductType parent) {
this.parent = parent;
}
@OneToMany(cascade={CascadeType.REFRESH,CascadeType.REMOVE},mappedBy=”parent”)
public Set<ProductType> getChildtypes() {
return childtypes;
}
public void setChildtypes(Set<ProductType> childtypes) {
this.childtypes = childtypes;
}
@Column(length=36,nullable=false)
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
@Id @GeneratedValue(strategy=GenerationType.AUTO)
@SearchableId
public Integer getTypeid() {
return typeid;
}
public void setTypeid(Integer typeid) {
this.typeid = typeid;
}
@Override
public int hashCode() {
final int prime = 31;
int result = 1;
result = prime * result + ((typeid == null) ? 0 : typeid.hashCode());
return result;
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (getClass() != obj.getClass())
return false;
final ProductType other = (ProductType) obj;
if (typeid == null) {
if (other.typeid != null)
return false;
} else if (!typeid.equals(other.typeid))
return false;
return true;
}
}
@Entity
@Searchable
public class ProductType implements Serializable{
private static final long serialVersionUID = 8106351120886053881L;
/** 类别id **/
private Integer typeid;
/** 类别名称 **/
private String name;
/** 子类别 **/
private Set<ProductType> childtypes = new HashSet<ProductType>();
/** 所属父类 **/
private ProductType parent;
private Set<ProductInfo> products = new HashSet<ProductInfo>();
@OneToMany(mappedBy=”type”, cascade=CascadeType.REMOVE)
@SearchableReference
public Set<ProductInfo> getProducts() {
return products;
}
public void setProducts(Set<ProductInfo> products) {
this.products = products;
}
public ProductType() {}
@ManyToOne(cascade=CascadeType.REFRESH)
@JoinColumn(name=”parentid”)
public ProductType getParent() {
return parent;
}
public void setParent(ProductType parent) {
this.parent = parent;
}
@OneToMany(cascade={CascadeType.REFRESH,CascadeType.REMOVE},mappedBy=”parent”)
public Set<ProductType> getChildtypes() {
return childtypes;
}
public void setChildtypes(Set<ProductType> childtypes) {
this.childtypes = childtypes;
}
@Column(length=36,nullable=false)
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
@Id @GeneratedValue(strategy=GenerationType.AUTO)
@SearchableId
public Integer getTypeid() {
return typeid;
}
public void setTypeid(Integer typeid) {
this.typeid = typeid;
}
@Override
public int hashCode() {
final int prime = 31;
int result = 1;
result = prime * result + ((typeid == null) ? 0 : typeid.hashCode());
return result;
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (getClass() != obj.getClass())
return false;
final ProductType other = (ProductType) obj;
if (typeid == null) {
if (other.typeid != null)
return false;
} else if (!typeid.equals(other.typeid))
return false;
return true;
}
}
ProductStyle.java
Java代码
1.
2.@Entity
3.@Searchable
4.public class ProductStyle implements Serializable{
5. private static final long serialVersionUID = -4926119953511144279L;
6. private Integer id;
7. /** 样式的名称 **/
8. private String name;
9. /** 图片 **/
10. private String imagename;
11. private String image140FullPath;
12. /** 是否可见 **/
13. private Boolean visible = true;
14. private ProductInfo product;
15.
16. public ProductStyle() {}
17.
18. public ProductStyle(Integer id) {
19. this.id = id;
20. }
21.
22. public ProductStyle(String name, String imagename) {
23. this.name = name;
24. this.imagename = imagename;
25. }
26. @ManyToOne(cascade=CascadeType.REFRESH,optional=false)
27. @JoinColumn(name=”productid”)
28. @SearchableReference
29. public ProductInfo getProduct() {
30. return product;
31. }
32. public void setProduct(ProductInfo product) {
33. this.product = product;
34. }
35. @Id @GeneratedValue
36. @SearchableId
37. public Integer getId() {
38. return id;
39. }
40. public void setId(Integer id) {
41. this.id = id;
42. }
43. @Column(length=30,nullable=false)
44. public String getName() {
45. return name;
46. }
47. public void setName(String name) {
48. this.name = name;
49. }
50. @Column(length=40,nullable=false)
51. @SearchableProperty(index = Index.UN_TOKENIZED, store = Store.YES)
52. public String getImagename() {
53. return imagename;
54. }
55. public void setImagename(String imagename) {
56. this.imagename = imagename;
57. }
58. @Column(nullable=false)
59. public Boolean getVisible() {
60. return visible;
61. }
62. public void setVisible(Boolean visible) {
63. this.visible = visible;
64. }
65. @Transient
66. public String getImageFullPath(){
67. return “/images/product/”+ this.getProduct().getType().getTypeid()+ “/”+
68. this.getProduct().getId()+ “/prototype/”+ this.imagename;
69. }
70.
71. @Transient
72. public String getImage140FullPath(){
73. image140FullPath = “/images/product/”+ this.getProduct().getType().getTypeid()+ “/”+
74. this.getProduct().getId()+ “/140x/”+ this.imagename;
75. return image140FullPath;
76. }
77.
78. @Override
79. public int hashCode() {
80. final int prime = 31;
81. int result = 1;
82. result = prime * result + ((id == null) ? 0 : id.hashCode());
83. return result;
84. }
85. @Override
86. public boolean equals(Object obj) {
87. if (this == obj)
88. return true;
89. if (obj == null)
90. return false;
91. if (getClass() != obj.getClass())
92. return false;
93. final ProductStyle other = (ProductStyle) obj;
94. if (id == null) {
95. if (other.id != null)
96. return false;
97. } else if (!id.equals(other.id))
98. return false;
99. return true;
100. }
101.}
@Entity
@Searchable
public class ProductStyle implements Serializable{
private static final long serialVersionUID = -4926119953511144279L;
private Integer id;
/** 样式的名称 **/
private String name;
/** 图片 **/
private String imagename;
private String image140FullPath;
/** 是否可见 **/
private Boolean visible = true;
private ProductInfo product;
public ProductStyle() {}
public ProductStyle(Integer id) {
this.id = id;
}
public ProductStyle(String name, String imagename) {
this.name = name;
this.imagename = imagename;
}
@ManyToOne(cascade=CascadeType.REFRESH,optional=false)
@JoinColumn(name=”productid”)
@SearchableReference
public ProductInfo getProduct() {
return product;
}
public void setProduct(ProductInfo product) {
this.product = product;
}
@Id @GeneratedValue
@SearchableId
public Integer getId() {
return id;
}
public void setId(Integer id) {
this.id = id;
}
@Column(length=30,nullable=false)
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
@Column(length=40,nullable=false)
@SearchableProperty(index = Index.UN_TOKENIZED, store = Store.YES)
public String getImagename() {
return imagename;
}
public void setImagename(String imagename) {
this.imagename = imagename;
}
@Column(nullable=false)
public Boolean getVisible() {
return visible;
}
public void setVisible(Boolean visible) {
this.visible = visible;
}
@Transient
public String getImageFullPath(){
return “/images/product/”+ this.getProduct().getType().getTypeid()+ “/”+
this.getProduct().getId()+ “/prototype/”+ this.imagename;
}
@Transient
public String getImage140FullPath(){
image140FullPath = “/images/product/”+ this.getProduct().getType().getTypeid()+ “/”+
this.getProduct().getId()+ “/140x/”+ this.imagename;
return image140FullPath;
}
@Override
public int hashCode() {
final int prime = 31;
int result = 1;
result = prime * result + ((id == null) ? 0 : id.hashCode());
return result;
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (getClass() != obj.getClass())
return false;
final ProductStyle other = (ProductStyle) obj;
if (id == null) {
if (other.id != null)
return false;
} else if (!id.equals(other.id))
return false;
return true;
}
}
这里要特别注意有集合类型要搜索或显示的时候,两边定义的@SearchableReference或 @SearchableComponent必须一致
2.再spring的配置文件中加入以下代码
Java代码
1.
2.<bean id=”annotationConfiguration” >
3.</bean>
4. <!– compass Bean –>
5.<bean id=”compass”>
6. <property name=”compassConfiguration”
7. ref=”annotationConfiguration” />
8. <property name=”transactionManager” ref=”txManager” />
9. <property name=”compassSettings”>
10. <props>
11. <!– 定义索引的存储位置 –>
12.<prop key=”compass.engine.connection”>d:/compass</prop>
13.<prop key=”compass.transaction.factory”>
14. org.compass.spring.transaction.SpringSyncTransactionFactory
15.</prop>
16. <!– 定义分词器–>
17.<prop key=”compass.engine.analyzer.MMAnalyzer.CustomAnalyzer”>
18.org.mira.lucene.analysis.IK_CAnalyzer
19.</prop>
20.</props>
21.</property>
22. <property name=”resourceDirectoryLocations”>
23. <list>
24. <value>classpath:net/shopin/bean/product</value>
25. </list>
26. </property>
27.
28. </bean>
29.
30. <bean id=”jpaGpsDevice”
31. >
32. <property name=”name”>
33. <value>JpaGpsDevice</value>
34. </property>
35. <property name=”entityManagerFactory”
36. ref=”entityManagerFactory” />
37. <property name=”mirrorDataChanges”>
38. <value>true</value>
39. </property>
40. </bean>
41. <!– 数据库中的数据变化后同步更新索引 –>
42. <bean id=”compassGps”
43. init-method=”start” destroy-method=”stop”>
44. <property name=”compass” ref=”compass” />
45. <property name=”gpsDevices”>
46. <list>
47. <bean
48. >
49. <property name=”gpsDevice” ref=”jpaGpsDevice” />
50. </bean>
51. </list>
52. </property>
53. </bean>
54.
55.
56. <bean id=”compassTemplate”
57. >
58. <property name=”compass” ref=”compass” />
59. </bean>
60.
61. <!– 定时重建索引(利用quartz)或随Spring ApplicationContext启动而重建索引 –>
62. <bean id=”compassIndexBuilder”
63.
64. lazy-init=”false”>
65. <property name=”compassGps” ref=”compassGps” />
66. <property name=”buildIndex” value=”true” />
67. <property name=”lazyTime” value=”5″ />
68. </bean>
<bean id=”annotationConfiguration”>
</bean>
<!– compass Bean –>
<bean id=”compass”>
<property name=”compassConfiguration”
ref=”annotationConfiguration” />
<property name=”transactionManager” ref=”txManager” />
<property name=”compassSettings”>
<props>
<!– 定义索引的存储位置 –>
<prop key=”compass.engine.connection”>d:/compass</prop>
<prop key=”compass.transaction.factory”>
org.compass.spring.transaction.SpringSyncTransactionFactory
</prop>
<!– 定义分词器–>
<prop key=”compass.engine.analyzer.MMAnalyzer.CustomAnalyzer”>
org.mira.lucene.analysis.IK_CAnalyzer
</prop>
</props>
</property>
<property name=”resourceDirectoryLocations”>
<list>
<value>classpath:net/shopin/bean/product</value>
</list>
</property>
</bean>
<bean id=”jpaGpsDevice”
class=”org.compass.gps.device.jpa.JpaGpsDevice”>
<property name=”name”>
<value>JpaGpsDevice</value>
</property>
<property name=”entityManagerFactory”
ref=”entityManagerFactory” />
<property name=”mirrorDataChanges”>
<value>true</value>
</property>
</bean>
<!– 数据库中的数据变化后同步更新索引 –>
<bean id=”compassGps”
init-method=”start” destroy-method=”stop”>
<property name=”compass” ref=”compass” />
<property name=”gpsDevices”>
<list>
<bean
class=”org.compass.spring.device.SpringSyncTransactionGpsDeviceWrapper”>
<property name=”gpsDevice” ref=”jpaGpsDevice” />
</bean>
</list>
</property>
</bean>
<bean id=”compassTemplate”
class=”org.compass.core.CompassTemplate”>
<property name=”compass” ref=”compass” />
</bean>
<!– 定时重建索引(利用quartz)或随Spring ApplicationContext启动而重建索引 –>
<bean id=”compassIndexBuilder”
class=”net.shopin.service.search.impl.CompassIndexBuilder”
lazy-init=”false”>
<property name=”compassGps” ref=”compassGps” />
<property name=”buildIndex” value=”true” />
<property name=”lazyTime” value=”5″ />
</bean>
3.自动建立索引的java bean
Java代码
1.
2./**
3. * 通过quartz定时调度定时重建索引或自动随Spring ApplicationContext启动而重建索引的Builder.
4. * 会启动后延时数秒新开线程调用compassGps.index()函数.
5. * 默认会在Web应用每次启动时重建索引,可以设置buildIndex属性为false来禁止此功能.
6. * 也可以不用本Builder, 编写手动调用compassGps.index()的代码.
7. *
8. */
9.public class CompassIndexBuilder implements InitializingBean {
10. // 是否需要建立索引,可被设置为false使本Builder失效.
11. private boolean buildIndex = false;
12.
13. // 索引操作线程延时启动的时间,单位为秒
14. private int lazyTime = 10;
15.
16. // Compass封装
17. private CompassGps compassGps;
18.
19. // 索引线程
20. private Thread indexThread = new Thread() {
21.
22. @Override
23. public void run() {
24. try {
25. Thread.sleep(lazyTime * 1000);
26. System.out.println(“begin compass index…”);
27. long beginTime = System.currentTimeMillis();
28. // 重建索引.
29. // 如果compass实体中定义的索引文件已存在,索引过程中会建立临时索引,
30. // 索引完成后再进行覆盖.
31. compassGps.index();
32. long costTime = System.currentTimeMillis() – beginTime;
33. System.out.println(“compss index finished.”);
34. System.out.println(“costed ” + costTime + ” milliseconds”);
35. } catch (InterruptedException e) {
36. e.printStackTrace();
37. }
38. }
39. };
40.
41. /**
42. * 实现<code>InitializingBean</code>接口,在完成注入后调用启动索引线程.
43. *
44. * @see org.springframework.beans.factory.InitializingBean#afterPropertiesSet()
45. */
46. public void afterPropertiesSet() throws Exception {
47. if (buildIndex) {
48. indexThread.setDaemon(true);
49. indexThread.setName(“Compass Indexer”);
50. indexThread.start();
51. }
52. }
53.
54. public void setBuildIndex(boolean buildIndex) {
55. this.buildIndex = buildIndex;
56. }
57.
58. public void setLazyTime(int lazyTime) {
59. this.lazyTime = lazyTime;
60. }
61.
62. public void setCompassGps(CompassGps compassGps) {
63. this.compassGps = compassGps;
64. }
65.}
/**
* 通过quartz定时调度定时重建索引或自动随Spring ApplicationContext启动而重建索引的Builder.
* 会启动后延时数秒新开线程调用compassGps.index()函数.
* 默认会在Web应用每次启动时重建索引,可以设置buildIndex属性为false来禁止此功能.
* 也可以不用本Builder, 编写手动调用compassGps.index()的代码.
*
*/
public class CompassIndexBuilder implements InitializingBean {
// 是否需要建立索引,可被设置为false使本Builder失效.
private boolean buildIndex = false;
// 索引操作线程延时启动的时间,单位为秒
private int lazyTime = 10;
// Compass封装
private CompassGps compassGps;
// 索引线程
private Thread indexThread = new Thread() {
@Override
public void run() {
try {
Thread.sleep(lazyTime * 1000);
System.out.println(“begin compass index…”);
long beginTime = System.currentTimeMillis();
// 重建索引.
// 如果compass实体中定义的索引文件已存在,索引过程中会建立临时索引,
// 索引完成后再进行覆盖.
compassGps.index();
long costTime = System.currentTimeMillis() – beginTime;
System.out.println(“compss index finished.”);
System.out.println(“costed ” + costTime + ” milliseconds”);
} catch (InterruptedException e) {
e.printStackTrace();
}
}
};
/**
* 实现<code>InitializingBean</code>接口,在完成注入后调用启动索引线程.
*
* @see org.springframework.beans.factory.InitializingBean#afterPropertiesSet()
*/
public void afterPropertiesSet() throws Exception {
if (buildIndex) {
indexThread.setDaemon(true);
indexThread.setName(“Compass Indexer”);
indexThread.start();
}
}
public void setBuildIndex(boolean buildIndex) {
this.buildIndex = buildIndex;
}
public void setLazyTime(int lazyTime) {
this.lazyTime = lazyTime;
}
public void setCompassGps(CompassGps compassGps) {
this.compassGps = compassGps;
}
}
4.建立索引Service 层代码
Java代码
1.
2.@Service
3.@Transactional
4.public class SearchServiceBean extends DaoSupport implements SearchService {
5. @Resource(name = “compass”)
6. Compass compass;
7.
8./** 创建索引 **/
9.public void index(ProductInfo p) {
10.
11.CompassSession session = compass.openSession();
12.CompassTransaction tx = null;
13.try {
14. tx = session.beginTransaction();
15. session.create(p);
16. tx.commit();
17.} catch (Exception e) {
18. if (tx != null) {
19.tx.commit();
20. }
21. throw new RuntimeException(e);
22. } finally {
23. if (session != null) {
24. session.close();
25. }
26. }
27. }
28. /** 删除一条索引 **/
29. public void delete(ProductInfo p) {
30. CompassTemplate ct = new CompassTemplate(compass);
31. ct.delete(p);
32. }
33. /** 更新(重新创建)一条索引 **/
34. public void update(final ProductInfo p) {
35. CompassTemplate ct = new CompassTemplate(compass);
36.
37. CompassCallback<Object> action = new CompassCallback<Object>() {
38.
39. public Object doInCompass(CompassSession session)
40. throws CompassException {
41. session.delete(p);
42. session.create(p);
43. return null;
44. }
45.
46. };
47.
48. ct.execute(action);
49. }
50. /** 索引查询 **/
51. public List<ProductInfo> find(final String keywords) {
52. CompassTemplate ct = new CompassTemplate(compass);
53. return ct.execute(new CompassCallback<List<ProductInfo>>() {
54.
55. public List<ProductInfo> doInCompass(CompassSession session)
56. throws CompassException {
57. List<ProductInfo> result = new ArrayList<ProductInfo>();
58. CompassQueryBuilder queryBuilder = session.queryBuilder();
59. CompassHits hits = null; // session.find(query);
60. /** 在所有字段中查询 **/
61. CompassQuery allPropertyQuery = queryBuilder.queryString(keywords).toQuery();
62. hits = allPropertyQuery.hits();
63. /** 在指定字段中查询 **/
64. // CompassQuery query = queryBuilder.term(“name”, keywords);
65. // hits = query.hits();
66. /** 指定范围查询 **/
67.// CompassQuery dateRangeQuery =
68.// queryBuilder.between(“postTime”,startTime, endTime, true);
69.// hits = queryBuilder.bool()
70.// .addMust(allPropertyQuery)
71.// .addMust(dateRangeQuery)
72.// .toQuery()
73.// .hits();
74.// System.out.println(“———”);
75. for (int i = 0; i < hits.length(); i++) {
76. ProductInfo p = (ProductInfo) hits.data(i);
77. /** 如果进行高亮的属性中没有出现关键字, 则返回null **/
78.// String ht = hits.highlighter(i).fragment(“name”);
79.// if (ht != null) {
80.// p.setName(ht);
81.// }
82.// String hc = hits.highlighter(i).fragment(“code”);
83.// if (hc != null) {
84.// p.setCode(hc);
85.// }
86. result.add(p);
87. }
88. return result;
89. }
90. });
91. }
@Service
@Transactional
public class SearchServiceBean extends DaoSupport implements SearchService {
@Resource(name = “compass”)
Compass compass;
/** 创建索引 **/
public void index(ProductInfo p) {
CompassSession session = compass.openSession();
CompassTransaction tx = null;
try {
tx = session.beginTransaction();
session.create(p);
tx.commit();
} catch (Exception e) {
if (tx != null) {
tx.commit();
}
throw new RuntimeException(e);
} finally {
if (session != null) {
session.close();
}
}
}
/** 删除一条索引 **/
public void delete(ProductInfo p) {
CompassTemplate ct = new CompassTemplate(compass);
ct.delete(p);
}
/** 更新(重新创建)一条索引 **/
public void update(final ProductInfo p) {
CompassTemplate ct = new CompassTemplate(compass);
CompassCallback<Object> action = new CompassCallback<Object>() {
public Object doInCompass(CompassSession session)
throws CompassException {
session.delete(p);
session.create(p);
return null;
}
};
ct.execute(action);
}
/** 索引查询 **/
public List<ProductInfo> find(final String keywords) {
CompassTemplate ct = new CompassTemplate(compass);
return ct.execute(new CompassCallback<List<ProductInfo>>() {
public List<ProductInfo> doInCompass(CompassSession session)
throws CompassException {
List<ProductInfo> result = new ArrayList<ProductInfo>();
CompassQueryBuilder queryBuilder = session.queryBuilder();
CompassHits hits = null; // session.find(query);
/** 在所有字段中查询 **/
CompassQuery allPropertyQuery = queryBuilder.queryString(keywords).toQuery();
hits = allPropertyQuery.hits();
/** 在指定字段中查询 **/
// CompassQuery query = queryBuilder.term(“name”, keywords);
// hits = query.hits();
/** 指定范围查询 **/
// CompassQuery dateRangeQuery =
// queryBuilder.between(“postTime”,startTime, endTime, true);
// hits = queryBuilder.bool()
// .addMust(allPropertyQuery)
// .addMust(dateRangeQuery)
// .toQuery()
// .hits();
// System.out.println(“———”);
for (int i = 0; i < hits.length(); i++) {
ProductInfo p = (ProductInfo) hits.data(i);
/** 如果进行高亮的属性中没有出现关键字, 则返回null **/
// String ht = hits.highlighter(i).fragment(“name”);
// if (ht != null) {
// p.setName(ht);
// }
// String hc = hits.highlighter(i).fragment(“code”);
// if (hc != null) {
// p.setCode(hc);
// }
result.add(p);
}
return result;
}
});
}
控制层
Java代码
1.@Controller(“/search/gosearch“)
2.public class SearchAction extends Action {
3. @Resource(name = “searchServiceBean”)
4. private SearchService SearchService;
5.
6. @Override
7. public ActionForward execute(ActionMapping mapping, ActionForm form,
8. HttpServletRequest request, HttpServletResponse response)
9. throws Exception {
10. String keywords=request.getParameter(“word”).trim();
11. if(keywords==null||”".equals(keywords)){
12. return mapping.findForward(“noproduct”);
13. }
14. System.out.println(“——”+keywords);
15. List<ProductInfo> list = SearchService.find(keywords);
16. request.setAttribute(“word”, keywords);
17. request.setAttribute(“product”,list);
18. if(list.isEmpty()){
19. return mapping.findForward(“noproduct”);
20. }else{
21. return mapping.findForward(“list”);
22.
23. }
24. }
25.}
@Controller(“/search/gosearch”)
public class SearchAction extends Action {
@Resource(name = “searchServiceBean”)
private SearchService SearchService;
@Override
public ActionForward execute(ActionMapping mapping, ActionForm form,
HttpServletRequest request, HttpServletResponse response)
throws Exception {
String keywords=request.getParameter(“word”).trim();
if(keywords==null||”".equals(keywords)){
return mapping.findForward(“noproduct”);
}
System.out.println(“——”+keywords);
List<ProductInfo> list = SearchService.find(keywords);
request.setAttribute(“word”, keywords);
request.setAttribute(“product”,list);
if(list.isEmpty()){
return mapping.findForward(“noproduct”);
}else{
return mapping.findForward(“list”);
}
}
}
junit测试
public class SearchTest {
3. private static AbstractApplicationContext context;
4. @BeforeClass
5. public static void setUpBeforeClass() throws Exception {
6. try {
7. context = new ClassPathXmlApplicationContext(“beans.xml”);
8. } catch (Exception e) {
9. e.printStackTrace();
10. }
11. }
12.
13. @Test
14. public void testDelete() {
15. SearchService searchService = (SearchService) context
16. .getBean(“searchServiceBean”);
17. ProductInfo p = new ProductInfo(2);
18. searchService.delete(p);
19. }
20.
21. @Test
22. public void createIndex(){
23. SearchService searchService = (SearchService) context
24. .getBean(“searchServiceBean”);
25. ProductInfoService productInfoService = (ProductInfoService) context
26. .getBean(“productInfoServiceBean”);
27. List<ProductInfo> list=productInfoService.getAllProduct();
28. for(ProductInfo productInfo:list){
29.// System.out.println(“——-”+productInfo.getName());
30. searchService.index(productInfo);
31. }
32. }
33.
34. @Test
35. public void testSearch() {
36. SearchService searchService = (SearchService) context
37. .getBean(“searchServiceBean”);
38. String query = “手机”;
39. List<ProductInfo> ProductInfos;
40.
41. ProductInfos = searchService.find(query);
for (ProductInfo p : ProductInfos) {
System.out.println(p.getName());
}
System.out.println(“————”);
}
}
1.去官方网站下载compass的jar包,我用的的2.1版本
http://www.compass-project.org/
ProductInfo.java
@Entity
@Searchable
public class ProductInfo implements Serializable{
private static final long serialVersionUID = -8860864584425256200L;
private Integer id;
/** 货号 **/
private String code;
/** 产品名称 **/
private String name;
/** 产品类型 **/
private ProductType type;
/** 产品样式 **/
private Set<ProductStyle> styles = new HashSet<ProductStyle>();
public ProductInfo() {}
@OneToMany(cascade={CascadeType.REMOVE,CascadeType.PERSIST}, mappedBy=”product”,fetch=FetchType.EAGER)
@OrderBy(“visible desc, id asc”)
@SearchableReference
public Set<ProductStyle> getStyles() {
return styles;
}
public void setStyles(Set<ProductStyle> styles) {
this.styles = styles;
}
@Id @GeneratedValue
@SearchableId
public Integer getId() {
return id;
}
public void setId(Integer id) {
this.id = id;
}
@Column(length=30)
@SearchableProperty(index = Index.TOKENIZED, store = Store.YES)
public String getCode() {
return code;
}
public void setCode(String code) {
this.code = code;
}
@Column(length=50,nullable=false)
@SearchableProperty(index = Index.TOKENIZED, store = Store.YES)
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
@ManyToOne(cascade=CascadeType.REFRESH,optional=false)
@JoinColumn(name=”typeid”)
@SearchableReference
public ProductType getType() {
return type;
}
public void setType(ProductType type) {
this.type = type;
}
@Override
public int hashCode() {
final int prime = 31;
int result = 1;
result = prime * result + ((id == null) ? 0 : id.hashCode());
return result;
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (getClass() != obj.getClass())
return false;
final ProductInfo other = (ProductInfo) obj;
if (id == null) {
if (other.id != null)
return false;
} else if (!id.equals(other.id))
return false;
return true;
}
}
@Entity
@Searchable
public class ProductInfo implements Serializable{
private static final long serialVersionUID = -8860864584425256200L;
private Integer id;
/** 货号 **/
private String code;
/** 产品名称 **/
private String name;
/** 产品类型 **/
private ProductType type;
/** 产品样式 **/
private Set<ProductStyle> styles = new HashSet<ProductStyle>();
public ProductInfo() {}
@OneToMany(cascade={CascadeType.REMOVE,CascadeType.PERSIST}, mappedBy=”product”,fetch=FetchType.EAGER)
@OrderBy(“visible desc, id asc”)
@SearchableReference
public Set<ProductStyle> getStyles() {
return styles;
}
public void setStyles(Set<ProductStyle> styles) {
this.styles = styles;
}
@Id @GeneratedValue
@SearchableId
public Integer getId() {
return id;
}
public void setId(Integer id) {
this.id = id;
}
@Column(length=30)
@SearchableProperty(index = Index.TOKENIZED, store = Store.YES)
public String getCode() {
return code;
}
public void setCode(String code) {
this.code = code;
}
@Column(length=50,nullable=false)
@SearchableProperty(index = Index.TOKENIZED, store = Store.YES)
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
@ManyToOne(cascade=CascadeType.REFRESH,optional=false)
@JoinColumn(name=”typeid”)
@SearchableReference
public ProductType getType() {
return type;
}
public void setType(ProductType type) {
this.type = type;
}
@Override
public int hashCode() {
final int prime = 31;
int result = 1;
result = prime * result + ((id == null) ? 0 : id.hashCode());
return result;
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (getClass() != obj.getClass())
return false;
final ProductInfo other = (ProductInfo) obj;
if (id == null) {
if (other.id != null)
return false;
} else if (!id.equals(other.id))
return false;
return true;
}
}
ProductType.java
@Entity
@Searchable
public class ProductType implements Serializable{
private static final long serialVersionUID = 8106351120886053881L;
/** 类别id **/
private Integer typeid;
/** 类别名称 **/
private String name;
/** 子类别 **/
private Set<ProductType> childtypes = new HashSet<ProductType>();
/** 所属父类 **/
private ProductType parent;
private Set<ProductInfo> products = new HashSet<ProductInfo>();
@OneToMany(mappedBy=”type”, cascade=CascadeType.REMOVE)
@SearchableReference
public Set<ProductInfo> getProducts() {
return products;
}
public void setProducts(Set<ProductInfo> products) {
this.products = products;
}
public ProductType() {}
@ManyToOne(cascade=CascadeType.REFRESH)
@JoinColumn(name=”parentid”)
public ProductType getParent() {
return parent;
}
public void setParent(ProductType parent) {
this.parent = parent;
}
@OneToMany(cascade={CascadeType.REFRESH,CascadeType.REMOVE},mappedBy=”parent”)
public Set<ProductType> getChildtypes() {
return childtypes;
}
public void setChildtypes(Set<ProductType> childtypes) {
this.childtypes = childtypes;
}
@Column(length=36,nullable=false)
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
@Id @GeneratedValue(strategy=GenerationType.AUTO)
@SearchableId
public Integer getTypeid() {
return typeid;
}
public void setTypeid(Integer typeid) {
this.typeid = typeid;
}
@Override
public int hashCode() {
final int prime = 31;
int result = 1;
result = prime * result + ((typeid == null) ? 0 : typeid.hashCode());
return result;
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (getClass() != obj.getClass())
return false;
final ProductType other = (ProductType) obj;
if (typeid == null) {
if (other.typeid != null)
return false;
} else if (!typeid.equals(other.typeid))
return false;
return true;
}
}
@Entity
@Searchable
public class ProductType implements Serializable{
private static final long serialVersionUID = 8106351120886053881L;
/** 类别id **/
private Integer typeid;
/** 类别名称 **/
private String name;
/** 子类别 **/
private Set<ProductType> childtypes = new HashSet<ProductType>();
/** 所属父类 **/
private ProductType parent;
private Set<ProductInfo> products = new HashSet<ProductInfo>();
@OneToMany(mappedBy=”type”, cascade=CascadeType.REMOVE)
@SearchableReference
public Set<ProductInfo> getProducts() {
return products;
}
public void setProducts(Set<ProductInfo> products) {
this.products = products;
}
public ProductType() {}
@ManyToOne(cascade=CascadeType.REFRESH)
@JoinColumn(name=”parentid”)
public ProductType getParent() {
return parent;
}
public void setParent(ProductType parent) {
this.parent = parent;
}
@OneToMany(cascade={CascadeType.REFRESH,CascadeType.REMOVE},mappedBy=”parent”)
public Set<ProductType> getChildtypes() {
return childtypes;
}
public void setChildtypes(Set<ProductType> childtypes) {
this.childtypes = childtypes;
}
@Column(length=36,nullable=false)
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
@Id @GeneratedValue(strategy=GenerationType.AUTO)
@SearchableId
public Integer getTypeid() {
return typeid;
}
public void setTypeid(Integer typeid) {
this.typeid = typeid;
}
@Override
public int hashCode() {
final int prime = 31;
int result = 1;
result = prime * result + ((typeid == null) ? 0 : typeid.hashCode());
return result;
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (getClass() != obj.getClass())
return false;
final ProductType other = (ProductType) obj;
if (typeid == null) {
if (other.typeid != null)
return false;
} else if (!typeid.equals(other.typeid))
return false;
return true;
}
}
ProductStyle.java
Java代码
1.
2.@Entity
3.@Searchable
4.public class ProductStyle implements Serializable{
5. private static final long serialVersionUID = -4926119953511144279L;
6. private Integer id;
7. /** 样式的名称 **/
8. private String name;
9. /** 图片 **/
10. private String imagename;
11. private String image140FullPath;
12. /** 是否可见 **/
13. private Boolean visible = true;
14. private ProductInfo product;
15.
16. public ProductStyle() {}
17.
18. public ProductStyle(Integer id) {
19. this.id = id;
20. }
21.
22. public ProductStyle(String name, String imagename) {
23. this.name = name;
24. this.imagename = imagename;
25. }
26. @ManyToOne(cascade=CascadeType.REFRESH,optional=false)
27. @JoinColumn(name=”productid”)
28. @SearchableReference
29. public ProductInfo getProduct() {
30. return product;
31. }
32. public void setProduct(ProductInfo product) {
33. this.product = product;
34. }
35. @Id @GeneratedValue
36. @SearchableId
37. public Integer getId() {
38. return id;
39. }
40. public void setId(Integer id) {
41. this.id = id;
42. }
43. @Column(length=30,nullable=false)
44. public String getName() {
45. return name;
46. }
47. public void setName(String name) {
48. this.name = name;
49. }
50. @Column(length=40,nullable=false)
51. @SearchableProperty(index = Index.UN_TOKENIZED, store = Store.YES)
52. public String getImagename() {
53. return imagename;
54. }
55. public void setImagename(String imagename) {
56. this.imagename = imagename;
57. }
58. @Column(nullable=false)
59. public Boolean getVisible() {
60. return visible;
61. }
62. public void setVisible(Boolean visible) {
63. this.visible = visible;
64. }
65. @Transient
66. public String getImageFullPath(){
67. return “/images/product/”+ this.getProduct().getType().getTypeid()+ “/”+
68. this.getProduct().getId()+ “/prototype/”+ this.imagename;
69. }
70.
71. @Transient
72. public String getImage140FullPath(){
73. image140FullPath = “/images/product/”+ this.getProduct().getType().getTypeid()+ “/”+
74. this.getProduct().getId()+ “/140x/”+ this.imagename;
75. return image140FullPath;
76. }
77.
78. @Override
79. public int hashCode() {
80. final int prime = 31;
81. int result = 1;
82. result = prime * result + ((id == null) ? 0 : id.hashCode());
83. return result;
84. }
85. @Override
86. public boolean equals(Object obj) {
87. if (this == obj)
88. return true;
89. if (obj == null)
90. return false;
91. if (getClass() != obj.getClass())
92. return false;
93. final ProductStyle other = (ProductStyle) obj;
94. if (id == null) {
95. if (other.id != null)
96. return false;
97. } else if (!id.equals(other.id))
98. return false;
99. return true;
100. }
101.}
@Entity
@Searchable
public class ProductStyle implements Serializable{
private static final long serialVersionUID = -4926119953511144279L;
private Integer id;
/** 样式的名称 **/
private String name;
/** 图片 **/
private String imagename;
private String image140FullPath;
/** 是否可见 **/
private Boolean visible = true;
private ProductInfo product;
public ProductStyle() {}
public ProductStyle(Integer id) {
this.id = id;
}
public ProductStyle(String name, String imagename) {
this.name = name;
this.imagename = imagename;
}
@ManyToOne(cascade=CascadeType.REFRESH,optional=false)
@JoinColumn(name=”productid”)
@SearchableReference
public ProductInfo getProduct() {
return product;
}
public void setProduct(ProductInfo product) {
this.product = product;
}
@Id @GeneratedValue
@SearchableId
public Integer getId() {
return id;
}
public void setId(Integer id) {
this.id = id;
}
@Column(length=30,nullable=false)
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
@Column(length=40,nullable=false)
@SearchableProperty(index = Index.UN_TOKENIZED, store = Store.YES)
public String getImagename() {
return imagename;
}
public void setImagename(String imagename) {
this.imagename = imagename;
}
@Column(nullable=false)
public Boolean getVisible() {
return visible;
}
public void setVisible(Boolean visible) {
this.visible = visible;
}
@Transient
public String getImageFullPath(){
return “/images/product/”+ this.getProduct().getType().getTypeid()+ “/”+
this.getProduct().getId()+ “/prototype/”+ this.imagename;
}
@Transient
public String getImage140FullPath(){
image140FullPath = “/images/product/”+ this.getProduct().getType().getTypeid()+ “/”+
this.getProduct().getId()+ “/140x/”+ this.imagename;
return image140FullPath;
}
@Override
public int hashCode() {
final int prime = 31;
int result = 1;
result = prime * result + ((id == null) ? 0 : id.hashCode());
return result;
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (getClass() != obj.getClass())
return false;
final ProductStyle other = (ProductStyle) obj;
if (id == null) {
if (other.id != null)
return false;
} else if (!id.equals(other.id))
return false;
return true;
}
}
这里要特别注意有集合类型要搜索或显示的时候,两边定义的@SearchableReference或 @SearchableComponent必须一致
2.再spring的配置文件中加入以下代码
Java代码
1.
2.<bean id=”annotationConfiguration” >
3.</bean>
4. <!– compass Bean –>
5.<bean id=”compass”>
6. <property name=”compassConfiguration”
7. ref=”annotationConfiguration” />
8. <property name=”transactionManager” ref=”txManager” />
9. <property name=”compassSettings”>
10. <props>
11. <!– 定义索引的存储位置 –>
12.<prop key=”compass.engine.connection”>d:/compass</prop>
13.<prop key=”compass.transaction.factory”>
14. org.compass.spring.transaction.SpringSyncTransactionFactory
15.</prop>
16. <!– 定义分词器–>
17.<prop key=”compass.engine.analyzer.MMAnalyzer.CustomAnalyzer”>
18.org.mira.lucene.analysis.IK_CAnalyzer
19.</prop>
20.</props>
21.</property>
22. <property name=”resourceDirectoryLocations”>
23. <list>
24. <value>classpath:net/shopin/bean/product</value>
25. </list>
26. </property>
27.
28. </bean>
29.
30. <bean id=”jpaGpsDevice”
31. >
32. <property name=”name”>
33. <value>JpaGpsDevice</value>
34. </property>
35. <property name=”entityManagerFactory”
36. ref=”entityManagerFactory” />
37. <property name=”mirrorDataChanges”>
38. <value>true</value>
39. </property>
40. </bean>
41. <!– 数据库中的数据变化后同步更新索引 –>
42. <bean id=”compassGps”
43. init-method=”start” destroy-method=”stop”>
44. <property name=”compass” ref=”compass” />
45. <property name=”gpsDevices”>
46. <list>
47. <bean
48. >
49. <property name=”gpsDevice” ref=”jpaGpsDevice” />
50. </bean>
51. </list>
52. </property>
53. </bean>
54.
55.
56. <bean id=”compassTemplate”
57. >
58. <property name=”compass” ref=”compass” />
59. </bean>
60.
61. <!– 定时重建索引(利用quartz)或随Spring ApplicationContext启动而重建索引 –>
62. <bean id=”compassIndexBuilder”
63.
64. lazy-init=”false”>
65. <property name=”compassGps” ref=”compassGps” />
66. <property name=”buildIndex” value=”true” />
67. <property name=”lazyTime” value=”5″ />
68. </bean>
<bean id=”annotationConfiguration”>
</bean>
<!– compass Bean –>
<bean id=”compass”>
<property name=”compassConfiguration”
ref=”annotationConfiguration” />
<property name=”transactionManager” ref=”txManager” />
<property name=”compassSettings”>
<props>
<!– 定义索引的存储位置 –>
<prop key=”compass.engine.connection”>d:/compass</prop>
<prop key=”compass.transaction.factory”>
org.compass.spring.transaction.SpringSyncTransactionFactory
</prop>
<!– 定义分词器–>
<prop key=”compass.engine.analyzer.MMAnalyzer.CustomAnalyzer”>
org.mira.lucene.analysis.IK_CAnalyzer
</prop>
</props>
</property>
<property name=”resourceDirectoryLocations”>
<list>
<value>classpath:net/shopin/bean/product</value>
</list>
</property>
</bean>
<bean id=”jpaGpsDevice”
class=”org.compass.gps.device.jpa.JpaGpsDevice”>
<property name=”name”>
<value>JpaGpsDevice</value>
</property>
<property name=”entityManagerFactory”
ref=”entityManagerFactory” />
<property name=”mirrorDataChanges”>
<value>true</value>
</property>
</bean>
<!– 数据库中的数据变化后同步更新索引 –>
<bean id=”compassGps”
init-method=”start” destroy-method=”stop”>
<property name=”compass” ref=”compass” />
<property name=”gpsDevices”>
<list>
<bean
class=”org.compass.spring.device.SpringSyncTransactionGpsDeviceWrapper”>
<property name=”gpsDevice” ref=”jpaGpsDevice” />
</bean>
</list>
</property>
</bean>
<bean id=”compassTemplate”
class=”org.compass.core.CompassTemplate”>
<property name=”compass” ref=”compass” />
</bean>
<!– 定时重建索引(利用quartz)或随Spring ApplicationContext启动而重建索引 –>
<bean id=”compassIndexBuilder”
class=”net.shopin.service.search.impl.CompassIndexBuilder”
lazy-init=”false”>
<property name=”compassGps” ref=”compassGps” />
<property name=”buildIndex” value=”true” />
<property name=”lazyTime” value=”5″ />
</bean>
3.自动建立索引的java bean
Java代码
1.
2./**
3. * 通过quartz定时调度定时重建索引或自动随Spring ApplicationContext启动而重建索引的Builder.
4. * 会启动后延时数秒新开线程调用compassGps.index()函数.
5. * 默认会在Web应用每次启动时重建索引,可以设置buildIndex属性为false来禁止此功能.
6. * 也可以不用本Builder, 编写手动调用compassGps.index()的代码.
7. *
8. */
9.public class CompassIndexBuilder implements InitializingBean {
10. // 是否需要建立索引,可被设置为false使本Builder失效.
11. private boolean buildIndex = false;
12.
13. // 索引操作线程延时启动的时间,单位为秒
14. private int lazyTime = 10;
15.
16. // Compass封装
17. private CompassGps compassGps;
18.
19. // 索引线程
20. private Thread indexThread = new Thread() {
21.
22. @Override
23. public void run() {
24. try {
25. Thread.sleep(lazyTime * 1000);
26. System.out.println(“begin compass index…”);
27. long beginTime = System.currentTimeMillis();
28. // 重建索引.
29. // 如果compass实体中定义的索引文件已存在,索引过程中会建立临时索引,
30. // 索引完成后再进行覆盖.
31. compassGps.index();
32. long costTime = System.currentTimeMillis() – beginTime;
33. System.out.println(“compss index finished.”);
34. System.out.println(“costed ” + costTime + ” milliseconds”);
35. } catch (InterruptedException e) {
36. e.printStackTrace();
37. }
38. }
39. };
40.
41. /**
42. * 实现<code>InitializingBean</code>接口,在完成注入后调用启动索引线程.
43. *
44. * @see org.springframework.beans.factory.InitializingBean#afterPropertiesSet()
45. */
46. public void afterPropertiesSet() throws Exception {
47. if (buildIndex) {
48. indexThread.setDaemon(true);
49. indexThread.setName(“Compass Indexer”);
50. indexThread.start();
51. }
52. }
53.
54. public void setBuildIndex(boolean buildIndex) {
55. this.buildIndex = buildIndex;
56. }
57.
58. public void setLazyTime(int lazyTime) {
59. this.lazyTime = lazyTime;
60. }
61.
62. public void setCompassGps(CompassGps compassGps) {
63. this.compassGps = compassGps;
64. }
65.}
/**
* 通过quartz定时调度定时重建索引或自动随Spring ApplicationContext启动而重建索引的Builder.
* 会启动后延时数秒新开线程调用compassGps.index()函数.
* 默认会在Web应用每次启动时重建索引,可以设置buildIndex属性为false来禁止此功能.
* 也可以不用本Builder, 编写手动调用compassGps.index()的代码.
*
*/
public class CompassIndexBuilder implements InitializingBean {
// 是否需要建立索引,可被设置为false使本Builder失效.
private boolean buildIndex = false;
// 索引操作线程延时启动的时间,单位为秒
private int lazyTime = 10;
// Compass封装
private CompassGps compassGps;
// 索引线程
private Thread indexThread = new Thread() {
@Override
public void run() {
try {
Thread.sleep(lazyTime * 1000);
System.out.println(“begin compass index…”);
long beginTime = System.currentTimeMillis();
// 重建索引.
// 如果compass实体中定义的索引文件已存在,索引过程中会建立临时索引,
// 索引完成后再进行覆盖.
compassGps.index();
long costTime = System.currentTimeMillis() – beginTime;
System.out.println(“compss index finished.”);
System.out.println(“costed ” + costTime + ” milliseconds”);
} catch (InterruptedException e) {
e.printStackTrace();
}
}
};
/**
* 实现<code>InitializingBean</code>接口,在完成注入后调用启动索引线程.
*
* @see org.springframework.beans.factory.InitializingBean#afterPropertiesSet()
*/
public void afterPropertiesSet() throws Exception {
if (buildIndex) {
indexThread.setDaemon(true);
indexThread.setName(“Compass Indexer”);
indexThread.start();
}
}
public void setBuildIndex(boolean buildIndex) {
this.buildIndex = buildIndex;
}
public void setLazyTime(int lazyTime) {
this.lazyTime = lazyTime;
}
public void setCompassGps(CompassGps compassGps) {
this.compassGps = compassGps;
}
}
4.建立索引Service 层代码
Java代码
1.
2.@Service
3.@Transactional
4.public class SearchServiceBean extends DaoSupport implements SearchService {
5. @Resource(name = “compass”)
6. Compass compass;
7.
8./** 创建索引 **/
9.public void index(ProductInfo p) {
10.
11.CompassSession session = compass.openSession();
12.CompassTransaction tx = null;
13.try {
14. tx = session.beginTransaction();
15. session.create(p);
16. tx.commit();
17.} catch (Exception e) {
18. if (tx != null) {
19.tx.commit();
20. }
21. throw new RuntimeException(e);
22. } finally {
23. if (session != null) {
24. session.close();
25. }
26. }
27. }
28. /** 删除一条索引 **/
29. public void delete(ProductInfo p) {
30. CompassTemplate ct = new CompassTemplate(compass);
31. ct.delete(p);
32. }
33. /** 更新(重新创建)一条索引 **/
34. public void update(final ProductInfo p) {
35. CompassTemplate ct = new CompassTemplate(compass);
36.
37. CompassCallback<Object> action = new CompassCallback<Object>() {
38.
39. public Object doInCompass(CompassSession session)
40. throws CompassException {
41. session.delete(p);
42. session.create(p);
43. return null;
44. }
45.
46. };
47.
48. ct.execute(action);
49. }
50. /** 索引查询 **/
51. public List<ProductInfo> find(final String keywords) {
52. CompassTemplate ct = new CompassTemplate(compass);
53. return ct.execute(new CompassCallback<List<ProductInfo>>() {
54.
55. public List<ProductInfo> doInCompass(CompassSession session)
56. throws CompassException {
57. List<ProductInfo> result = new ArrayList<ProductInfo>();
58. CompassQueryBuilder queryBuilder = session.queryBuilder();
59. CompassHits hits = null; // session.find(query);
60. /** 在所有字段中查询 **/
61. CompassQuery allPropertyQuery = queryBuilder.queryString(keywords).toQuery();
62. hits = allPropertyQuery.hits();
63. /** 在指定字段中查询 **/
64. // CompassQuery query = queryBuilder.term(“name”, keywords);
65. // hits = query.hits();
66. /** 指定范围查询 **/
67.// CompassQuery dateRangeQuery =
68.// queryBuilder.between(“postTime”,startTime, endTime, true);
69.// hits = queryBuilder.bool()
70.// .addMust(allPropertyQuery)
71.// .addMust(dateRangeQuery)
72.// .toQuery()
73.// .hits();
74.// System.out.println(“———”);
75. for (int i = 0; i < hits.length(); i++) {
76. ProductInfo p = (ProductInfo) hits.data(i);
77. /** 如果进行高亮的属性中没有出现关键字, 则返回null **/
78.// String ht = hits.highlighter(i).fragment(“name”);
79.// if (ht != null) {
80.// p.setName(ht);
81.// }
82.// String hc = hits.highlighter(i).fragment(“code”);
83.// if (hc != null) {
84.// p.setCode(hc);
85.// }
86. result.add(p);
87. }
88. return result;
89. }
90. });
91. }
@Service
@Transactional
public class SearchServiceBean extends DaoSupport implements SearchService {
@Resource(name = “compass”)
Compass compass;
/** 创建索引 **/
public void index(ProductInfo p) {
CompassSession session = compass.openSession();
CompassTransaction tx = null;
try {
tx = session.beginTransaction();
session.create(p);
tx.commit();
} catch (Exception e) {
if (tx != null) {
tx.commit();
}
throw new RuntimeException(e);
} finally {
if (session != null) {
session.close();
}
}
}
/** 删除一条索引 **/
public void delete(ProductInfo p) {
CompassTemplate ct = new CompassTemplate(compass);
ct.delete(p);
}
/** 更新(重新创建)一条索引 **/
public void update(final ProductInfo p) {
CompassTemplate ct = new CompassTemplate(compass);
CompassCallback<Object> action = new CompassCallback<Object>() {
public Object doInCompass(CompassSession session)
throws CompassException {
session.delete(p);
session.create(p);
return null;
}
};
ct.execute(action);
}
/** 索引查询 **/
public List<ProductInfo> find(final String keywords) {
CompassTemplate ct = new CompassTemplate(compass);
return ct.execute(new CompassCallback<List<ProductInfo>>() {
public List<ProductInfo> doInCompass(CompassSession session)
throws CompassException {
List<ProductInfo> result = new ArrayList<ProductInfo>();
CompassQueryBuilder queryBuilder = session.queryBuilder();
CompassHits hits = null; // session.find(query);
/** 在所有字段中查询 **/
CompassQuery allPropertyQuery = queryBuilder.queryString(keywords).toQuery();
hits = allPropertyQuery.hits();
/** 在指定字段中查询 **/
// CompassQuery query = queryBuilder.term(“name”, keywords);
// hits = query.hits();
/** 指定范围查询 **/
// CompassQuery dateRangeQuery =
// queryBuilder.between(“postTime”,startTime, endTime, true);
// hits = queryBuilder.bool()
// .addMust(allPropertyQuery)
// .addMust(dateRangeQuery)
// .toQuery()
// .hits();
// System.out.println(“———”);
for (int i = 0; i < hits.length(); i++) {
ProductInfo p = (ProductInfo) hits.data(i);
/** 如果进行高亮的属性中没有出现关键字, 则返回null **/
// String ht = hits.highlighter(i).fragment(“name”);
// if (ht != null) {
// p.setName(ht);
// }
// String hc = hits.highlighter(i).fragment(“code”);
// if (hc != null) {
// p.setCode(hc);
// }
result.add(p);
}
return result;
}
});
}
控制层
Java代码
1.@Controller(“/search/gosearch“)
2.public class SearchAction extends Action {
3. @Resource(name = “searchServiceBean”)
4. private SearchService SearchService;
5.
6. @Override
7. public ActionForward execute(ActionMapping mapping, ActionForm form,
8. HttpServletRequest request, HttpServletResponse response)
9. throws Exception {
10. String keywords=request.getParameter(“word”).trim();
11. if(keywords==null||”".equals(keywords)){
12. return mapping.findForward(“noproduct”);
13. }
14. System.out.println(“——”+keywords);
15. List<ProductInfo> list = SearchService.find(keywords);
16. request.setAttribute(“word”, keywords);
17. request.setAttribute(“product”,list);
18. if(list.isEmpty()){
19. return mapping.findForward(“noproduct”);
20. }else{
21. return mapping.findForward(“list”);
22.
23. }
24. }
25.}
@Controller(“/search/gosearch”)
public class SearchAction extends Action {
@Resource(name = “searchServiceBean”)
private SearchService SearchService;
@Override
public ActionForward execute(ActionMapping mapping, ActionForm form,
HttpServletRequest request, HttpServletResponse response)
throws Exception {
String keywords=request.getParameter(“word”).trim();
if(keywords==null||”".equals(keywords)){
return mapping.findForward(“noproduct”);
}
System.out.println(“——”+keywords);
List<ProductInfo> list = SearchService.find(keywords);
request.setAttribute(“word”, keywords);
request.setAttribute(“product”,list);
if(list.isEmpty()){
return mapping.findForward(“noproduct”);
}else{
return mapping.findForward(“list”);
}
}
}
junit测试
public class SearchTest {
3. private static AbstractApplicationContext context;
4. @BeforeClass
5. public static void setUpBeforeClass() throws Exception {
6. try {
7. context = new ClassPathXmlApplicationContext(“beans.xml”);
8. } catch (Exception e) {
9. e.printStackTrace();
10. }
11. }
12.
13. @Test
14. public void testDelete() {
15. SearchService searchService = (SearchService) context
16. .getBean(“searchServiceBean”);
17. ProductInfo p = new ProductInfo(2);
18. searchService.delete(p);
19. }
20.
21. @Test
22. public void createIndex(){
23. SearchService searchService = (SearchService) context
24. .getBean(“searchServiceBean”);
25. ProductInfoService productInfoService = (ProductInfoService) context
26. .getBean(“productInfoServiceBean”);
27. List<ProductInfo> list=productInfoService.getAllProduct();
28. for(ProductInfo productInfo:list){
29.// System.out.println(“——-”+productInfo.getName());
30. searchService.index(productInfo);
31. }
32. }
33.
34. @Test
35. public void testSearch() {
36. SearchService searchService = (SearchService) context
37. .getBean(“searchServiceBean”);
38. String query = “手机”;
39. List<ProductInfo> ProductInfos;
40.
41. ProductInfos = searchService.find(query);
for (ProductInfo p : ProductInfos) {
System.out.println(p.getName());
}
System.out.println(“————”);
}
}
发表评论
-
Solr4.0+IKAnalyzer中文分词安装
2012-11-29 19:14 1582有近2年没接触Solr跟Lucene ... -
solr搜索打分规制排序
2012-09-26 21:58 2403solr使用了Lucene的内核,也继承了Luce ... -
solr DataimportHanler
2012-09-22 17:01 1239大多数的应用程序将数据存储在关系数据库、xml文件 ... -
solr第一弹 autocomplete(自动补全)
2012-09-22 16:38 1461百度和google中都有 ... -
全文搜索服务器solr之客户端 - solrj二次开发
2012-09-21 09:07 4859Solrj已经是很强大的solr客户端了。它本身就包装了h ... -
Solr Data Import 快速入门
2012-09-20 14:32 831原文出处:http://blog.chenl ... -
JAVA环境下利用solrj二次开发SOlR搜索的环境部署常见错误
2012-09-20 11:36 1789问题一:出现控制台坏的响应错误一Bad reque ... -
Solr学习总结
2012-09-20 10:06 6434一、 SOLR搭建企业搜索平台 运行环境: 运行容器:Tomc ... -
olr 的客户端调用solrj 建索引+分页查询
2012-09-20 08:54 1931在 solr 3.5 配置及应用(一) 讲过一了 sol ... -
Solr笔记
2012-09-19 23:07 1287... -
Apache Solr 初级教程(介绍、安装部署、Java接口、中文分词)
2012-09-19 22:56 1766Apache Solr 介绍 Solr 是 ... -
lucene3.0 分页显示与高亮显示(转)
2012-09-19 11:44 1722分页类 Java代码 pac ... -
lucene3 中文IKAnalyzer分词例子
2012-09-10 13:37 1181import java.io.IOException; im ... -
Lucene3.0.1 学习笔记
2012-09-08 08:57 952不管怎么说,搜索都是非 ... -
Compass2.0.2自带例子解析
2012-09-05 08:47 1463Compass2.0.2自带例子解析: 下面的代码来自com ... -
Spring + Compass + paoding配置
2012-09-05 08:50 1053Spring + Compass + paoding配置: ... -
配置compass的索引位置为相对路径
2012-09-01 10:49 1366配置compass的索引位置为相对路径: Compass是对 ... -
lucene创建索引
2012-09-01 10:48 1090lucene创建索引: import java.io.Fi ... -
Lucene demo调试运行:
2012-09-01 10:47 2028Lucene demo调试运行: 运行环境: JDK ... -
SSH + Lucene + 分页 + 排序 + 高亮 模拟简单新闻网站搜索引擎
2012-09-01 10:43 3455前两天看到了一个中国新闻网,这个网站的搜索form的a ...
相关推荐
标题中的"S2SH+compass"指的是一个基于Struts2(S),Spring(S)和Hibernate(H)这三种开源框架的Java Web应用,再加上Compass搜索引擎来实现站内全文检索的功能。这种组合常用于构建复杂的企业级应用,因为它提供...
通过以上步骤,你可以在SSH框架下成功集成Compass实现站内搜索分页。这一过程涉及到Java Web开发的多个层面,包括MVC架构、数据库操作、全文检索以及用户体验设计。熟练掌握这些技能将有助于构建高效且功能丰富的Web...
标题 "Spring ,JPA,Compass使用注解开发的博客站内搜索" 涉及的是在Java开发环境中,利用Spring框架、Java Persistence API (JPA) 和 Compass搜索引擎来实现一个博客系统的站内搜索功能。这是一项关键的技术,因为...
Compass搜索引擎技术是一种基于Lucene的全文检索框架,它提供了更高级别的API和集成机制,使得在Java应用程序中实现搜索引擎功能变得更加便捷。Compass的主要目标是将全文索引能力无缝地融入到现有的业务应用程序中...
Compass对象搜索引擎是一款基于Lucene的全文搜索引擎框架,它为Java开发者提供了高级的搜索功能,使得在应用程序中集成全文检索变得更加便捷。Compass的核心理念是将数据库中的对象与Lucene索引之间建立映射...
**基于Lucene的搜索引擎框架Compass教程** 在信息爆炸的时代,如何快速、准确地检索到所需数据成为了一个关键问题。Lucene,一个强大的全文搜索引擎库,为开发者提供了强大的索引和搜索功能。然而,直接使用Lucene...
### Java搜索 Compass 资料知识点 #### 一、Compass 概述 Compass 是一个为 Java 应用程序提供全文检索功能的框架。它能够帮助开发者在 Java 应用程序中轻松实现复杂的搜索需求,并且具有较高的性能。Compass 基于...
Compass全文搜索是一个基于Apache Lucene的高性能、易用的全文搜索引擎工具。Lucene是Java开发的开源库,它提供了文本分析、索引和搜索的基本功能。而Compass则在Lucene的基础上进行了封装,使得开发者可以更方便地...
【SSH+Compass搜索引擎简单项目】是一个基于Struts2(S),Hibernate(H)和Spring(S)的Java Web应用程序,结合了Compass搜索引擎库,用于实现对数据库中两个表的高效检索功能。这个项目旨在提供一个清晰易懂的...
【compass完整可用项目】是一个基于特定技术栈的软件开发项目,该项目的核心是Compass库,一个与Lucene紧密集成的全文搜索引擎工具。Compass提供了一种简单的方式来在Java应用程序中集成全文搜索功能,使得开发者...
Compass是一款基于Apache Lucene的全文搜索引擎库,它为Java开发者提供了一个高级的、易于使用的搜索框架。在Java应用中集成搜索引擎功能时,Compass提供了一种简化的方式来管理和操作Lucene索引。通过Compass,你...
Compass是一款基于Lucene的全文搜索引擎,它使得Java应用能够方便地集成全文搜索功能。Compass提供了对JDBC、Hibernate等数据源的直接支持,可以自动索引数据库中的数据,实现快速检索。 在"struts2+spring2.5+...
Compass是一款基于Apache Lucene的全文搜索引擎框架,它为开发者提供了更高级别的抽象层,简化了搜索引擎的集成工作。在理解Compass之前,我们需要先了解全文检索的基本概念和原理。 全文检索是相对于传统的基于...
Compass 是一个全文搜索引擎库,它是对 Lucene 的封装,为 Java 应用提供了一种简单易用的接口。在 Compass 中,Annotation 是一种元数据注解方式,它允许开发者在对象模型上直接定义搜索映射,使得对象与索引之间的...
Compass 2.2.0 是一个开源的Java搜索引擎框架,它的出现是为了简化与Apache Lucene的交互,为开发者提供了一种更为高级和抽象的API。Lucene是Apache软件基金会的一个项目,它是一个高性能、全文本搜索库,但是直接...
Compass全文检索是一个强大的搜索引擎库,它为Java应用程序提供了便捷的全文索引和搜索功能。在本实例中,我们有一个可直接运行的Compass全文检索系统,已经集成了SSH(Struts、Spring、Hibernate)框架,这是一个...
2. **Compass**: Compass被定义为面向领域模型的搜索框架,这意味着它必须支持对对象的搜索,包括持久化对象和XML文档对象的搜索,并且必须能够处理事务,包括创建、更新、保存和删除操作的事务级处理。因此,...