`
AquariusM
  • 浏览: 146973 次
  • 性别: Icon_minigender_1
  • 来自: 南阳
社区版块
存档分类
最新评论
阅读更多
转载自:http://3seefans.iteye.com/blog/438438
关键字: compass
Compass是基于lucene的一个全文搜索框架,我们可以把她看成是封装了lucene的ORM框架。

compass好比hibernate封装了jdbc一样封装了lucene。它可以自动完成实体对象到lucene提供的Document对象的转换,同时Compass隐藏了lucene复杂的多线程模型,避免了索引的同步问题。

类似hibernate,compass提供了Compass,CompassSession,CompassTransaction等对象,其中Compass类似hibernate的SessionFactory,负责拿到CompassSession,而CompassSession提供了create()和delete()方法用于创建和删除索引,find()方法用于实现全文搜索,同时CompassTransaction对其提供事务支持。

compass在项目中的使用:

1.实现对象到Document的映射,利用java 5注释,很容易做到。在对象中已get开头的属性中添加Compass注释@SearchableProperty。

@SearchableProperty包括四个属性:index,sotre,converter,boost。

index表示是否索引改属性。

sotre是否存储该属性。

converter是如何实现属性和string之间的转换。注意,lucene的属性都是string,如果非String类型,则需要手动指定一个转换器。

boost则是指定给属性在索引中的重要性。

注意,对于用于标志实体的唯一标志属性要用@SearchableId标志。

2.定义和编写相关的searchService接口和相关的实现类,定义相关的创建,删除,更新和搜索等方法。

这里可以看下livebookstore中的searcheService的实现:


public class SearchServiceImpl implements SearchService {

private final Log log = LogFactory.getLog(getClass());

private String directory;
private Compass compass;

/**
*   设置索引的存储目录
* @spring.property value="/WEB-INF/compass"
*/
public void setIndexDirectory(Resource resouce) {
   try {
    File dir = resouce.getFile();
    if (!dir.isDirectory()) {
     if (!dir.mkdirs()) {
      throw new ExceptionInInitializerError("Could not create directory for compass: " + dir.getPath());
     }
    }
    directory = dir.getPath();
    log.info("Set compass directory: " + directory);
   } catch (IOException e) {
    throw new ExceptionInInitializerError(e);
   }
}

/**
* 初始化Copass

*/
public void init() {
   DateConverter dateConverter = new DateConverter();
   dateConverter.setFormat("yyyy-MM-dd");
   compass = new CompassAnnotationsConfiguration().setConnection(directory).addClass(Book.class)
     .registerConverter("date", dateConverter).buildCompass();
}

/**
* Destroy compass.
*/
public void destroy() {
   compass.close();
}

public void index(Book book) {
   log.info("Index book...");
   CompassSession session = null;
   CompassTransaction tx = null;
   try {
    session = compass.openSession();
    tx = session.beginTransaction();
    session.create(book);
    tx.commit();
    log.info("Done.");
   } catch (RuntimeException e) {
    tx.rollback();
    throw e;
   } finally {
    if (session != null)
     session.close();
   }
}

public void unindex(Book book) {
   log.info("Unindex book...");
   CompassSession session = null;
   CompassTransaction tx = null;
   try {
    session = compass.openSession();
    tx = session.beginTransaction();
    session.delete(book);
    tx.commit();
    log.info("Done.");
   } catch (RuntimeException e) {
    tx.rollback();
    throw e;
   } finally {
    if (session != null)
     session.close();
   }
}

public void reindex(Book book) {
   log.info("Reindex book...");
   CompassSession session = null;
   CompassTransaction tx = null;
   try {
    session = compass.openSession();
    tx = session.beginTransaction();
    session.delete(book);
    session.create(book);
    tx.commit();
    log.info("Done.");
   } catch (RuntimeException e) {
    tx.rollback();
    throw e;
   } finally {
    if (session != null)
     session.close();
   }
}

@SuppressWarnings("unchecked")
public List<Book> search(String q, Page page) {
   if (q == null)
    return Collections.EMPTY_LIST;
   q = q.trim();
   if ("".equals(q))
    return Collections.EMPTY_LIST;
   CompassSession session = null;
   CompassTransaction tx = null;
   try {
    session = compass.openSession();
    tx = session.beginTransaction();
    CompassHits hits = session.find(q);
    int count = hits.length();
    page.setTotalCount(count);
    if (count == 0) {
     tx.commit();
     return Collections.EMPTY_LIST;
    }
    // fetch hits[start, end):
    int start = page.getFirstResult();
    int end = start + page.getPageSize();
    if (end > count)
     end = count;
    List<Book> results = new ArrayList<Book>(end - start);
    for (int i = start; i < end; i++) {
     results.add((Book) hits.data(i));
    }
    tx.commit();
    return results;
   } catch (RuntimeException e) {
    tx.rollback();
    throw e;
   } finally {
    if (session != null)
     session.close();
   }
}

}
从上面可以看出,实现一个Compass 是很容易的。

当对象的创建,删除和更新会影响到索引的变化。这里我们就需要在对象的创建,删除和更新的方法中相应的更新索引,也就是调用service的相应创建,删除和更新方法既可以。

3.如果涉及到服务器迁移,或者数据库的改动,修要从新为所有的书籍重建索引。我们只需要得到相关的全部实体,执行其创建方法就可以了。
分享到:
评论

相关推荐

    Spring+SpringMVC+Mybatis框架整合例子(SSM) 下载

    Spring、SpringMVC和Mybatis是Java开发中最常用的三大开源框架,它们的整合使用,通常被称为SSM框架。这个框架组合提供了完整的后端服务解决方案,包括依赖注入(DI)、面向切面编程(AOP)、模型-视图-控制器(MVC...

    spring_MVC源码

    弃用了struts,用spring mvc框架做了几个项目,感觉都不错,而且使用了注解方式,可以省掉一大堆配置文件。本文主要介绍使用注解方式配置的spring mvc,之前写的spring3.0 mvc和rest小例子没有介绍到数据层的内容,...

    java *spring工具类 方便在非spring管理环境中获取bean

    java *spring工具类 方便在非spring管理环境中获取beanjava *spring工具类 方便在非spring管理环境中获取beanjava *spring工具类 方便在非spring管理环境中获取beanjava *spring工具类 方便在非spring管理环境中获取...

    Spring Integration + Spring WS 整合

    Spring Integration + Spring WS 整合 在 Java 领域中,Spring Integration 和 Spring WS 是两个常用的框架,它们分别负责集成系统和 Web 服务。今天,我们将探讨如何将这两个框架整合在一起,实现一个完整的 Web ...

    spring3.0.5 所有jar文件

    包含spring 3.0.5的所有jar文件: org.springframework.aop-3.0.5.RELEASE.jar org.springframework.asm-3.0.5.RELEASE.jar org.springframework.aspects-3.0.5.RELEASE.jar org.springframework.beans-3.0.5.RELEASE...

    SpringBatch+Spring+Mybatis+MySql (spring batch 使用jar)

    Spring Batch是一个轻量级的,完全面向Spring的批处理框架,可以应用于企业级大量的数据处理系统。Spring Batch以POJO和大家熟知的Spring框架为基础,使开发者更容易的访问和利用企业级服务。Spring Batch可以提供...

    spring2.0升级到spring3.0.5的开发包

    Spring框架是Java应用程序开发中的一个核心组件,它提供了一个丰富的IOC(Inversion of Control,控制反转)和AOP(Aspect-Oriented Programming,面向切面编程)功能,使得开发者能够更方便地管理对象和实现模块化...

    Spring Boot整合Spring Batch,实现批处理

    在Java开发领域,Spring Boot和Spring Batch的整合是构建高效批处理系统的一种常见方式。Spring Boot以其简洁的配置和快速的启动能力深受开发者喜爱,而Spring Batch作为Spring框架的一部分,专注于批量处理任务,...

    Spring Cloud Gateway 整合 Spring Security 统一登录认证鉴权

    在构建分布式系统时,Spring Cloud Gateway 作为微服务架构中的边缘服务或 API 网关,扮演着至关重要的角色。它负责路由请求到相应的微服务,并可以提供过滤器功能,如限流、熔断等。而Spring Security 则是 Java ...

    spring3.1 官方全部jar包

    spring3.1官方所有的jar包 org.springframework.aop-3.1.RELEASE.jar org.springframework.asm-3.1.RELEASE.jar org.springframework.aspects-3.1.RELEASE.jar org.springframework.beans-3.1.RELEASE.jar org....

    Spring MVC 入门实例

    这篇文章将教你快速地上手使用 Spring 框架. 如果你手上有一本《Spring in Action》, 那么你最好从第三部分"Spring 在 Web 层的应用--建立 Web 层"开始看, 否则那将是一场恶梦! 首先, 我需要在你心里建立起 Spring...

    Getting started with Spring Framework: covers Spring 5(epub)

    Getting started with Spring Framework (4th Edition) is a hands-on guide to begin developing applications using Spring Framework 5. The examples (consisting of 88 sample projects) that accompany this ...

    基于Spring Boot 3.0、 Spring Cloud 2022 & Alibaba 的微服务RBAC 权限管理系统

    介绍一个基于Spring Boot 3.0、Spring Cloud 2022 & Alibaba的微服务RBAC权限管理系统。该系统可以实现微服务RBAC权限管理,通过RBAC权限管理机制对用户访问系统的权限进行限制,从而提高系统的安全性和可用性。同时...

    最新版本的Struts2+Spring4+Hibernate4框架整合

    项目原型:Struts2.3.16 + Spring4.1.1 + Hibernate4.3.6 二、 项目目的: 整合使用最新版本的三大框架(即Struts2、Spring4和Hibernate4),搭建项目架构原型。 项目架构原型:Struts2.3.16 + Spring4.1.1 + ...

    Spring cloud与Spring boot 集成完整案例

    Spring Cloud和Spring Boot是两个非常重要的Java开发框架,它们在微服务架构中扮演着核心角色。Spring Boot简化了创建独立的、生产级别的基于Spring的应用程序的过程,而Spring Cloud则为开发者提供了快速构建分布式...

    spring-ai-core 0.8.1

    《Spring AI Core 0.8.1:开启人工智能之旅》 在现代软件开发领域,Spring框架以其强大的功能和灵活性,已经成为Java开发中的首选框架之一。而Spring AI Core则是Spring生态系统中专门为人工智能(AI)和机器学习...

    Spring技术内幕:深入解析Spring架构与设计原理

    《Spring技术内幕:深入解析Spring架构与设计原理(第2版)》从源代码的角度对Spring的内核和各个主要功能模块的架构、设计和实现原理进行了深入剖析。你不仅能从本书中参透Spring框架的出色架构和设计思想,还能从...

    spring 4.3.14(全)最新的spring4正式版

    Spring 框架是 Java 开发中的一个核心组件,它为构建企业级应用程序提供了全面的编程和配置模型。Spring 4.3.14 是该框架的最后一个4.x系列正式版,发布于2018年2月24日。这个版本在Spring 5.0发布之前提供了一个...

    spring整合rabbitmq需要的jar包(spring版本4.2.0)

    在IT行业中,Spring框架是Java应用开发中的一个关键组件,它提供了一整套服务来简化企业级应用的构建。RabbitMQ则是一个流行的开源消息队列系统,它基于AMQP(Advanced Message Queuing Protocol)协议,用于高效地...

    SpringCloud项目实战各组件源代码案例

    Spring Cloud系列教程 Spring Boot Spring Cloud Stream 和 Kafka案例教程 springcloud生产者与消费者项目实战案例 Spring Cloud 中断路器 Circuit Breaker的应用 配置 Spring Cloud Config Server Spring Cloud ...

Global site tag (gtag.js) - Google Analytics