`

Lucene demo调试运行:

阅读更多

Lucene demo调试运行:

运行环境:

  •  JDK 1.5
  •    TOMCAT 5.5
  •    Eclipse 3.0.1
  1. 解压lucene1.4.3
  2. 把luceneweb.war复制到tomcat的webapps目录,重新启动tomcat,就可以看到目录下多了一个luceneweb目录
  3. 新建一个index文件夹,位置不限,用来存放生成的索引文件。这里在D:/Tomcat5.5/webapps/luceneweb/index
  4. 在Eclipse下建立个工程,取名LuceneTest,并添加所需的jar包。Lucene-1.4.3.jar,lucene-demos-1.4.3.jar
  5. 把/lucene-1.4.3/src/demo/org/apache/lucene/demo目录下的类加到工程中,包结构可自定
  6. 运行IndexHtml.java 运行参数-create -index D:/Tomcat5.5/webapps/luceneweb/index D:/Tomcat5.5/webapps/luceneweb/docs 这个根据实际情况调整
  7. 一切没问题后,运行结果如下:adding D:/Tomcat5.5/webapps/luceneweb/docs/api/packages.html
    adding D:/Tomcat5.5/webapps/luceneweb/docs/api/serialized-form.html
    adding D:/Tomcat5.5/webapps/luceneweb/docs/benchmarks.html
    adding D:/Tomcat5.5/webapps/luceneweb/docs/contributions.html
    adding D:/Tomcat5.5/webapps/luceneweb/docs/demo.html
    adding D:/Tomcat5.5/webapps/luceneweb/docs/demo2.html
    adding D:/Tomcat5.5/webapps/luceneweb/docs/index.html
    adding D:/Tomcat5.5/webapps/luceneweb/docs/lucene-sandbox/index.html
    adding D:/Tomcat5.5/webapps/luceneweb/docs/lucene-sandbox/larm/overview.html
    adding D:/Tomcat5.5/webapps/luceneweb/docs/luceneplan.html
    adding D:/Tomcat5.5/webapps/luceneweb/docs/queryparsersyntax.html
    adding D:/Tomcat5.5/webapps/luceneweb/docs/resources.html
    adding D:/Tomcat5.5/webapps/luceneweb/docs/systemproperties.html
    adding D:/Tomcat5.5/webapps/luceneweb/docs/whoweare.html
    Optimizing index…
    16644 total milliseconds
  8. 修改/luceneweb/下的configuration.jsp文件,String indexLocation = “/opt/lucene/index”;改为String indexLocation = “D://Tomcat5.5//webapps//luceneweb//index”;
  9. 重新启动tomcat,在浏览器中输入http://localhost:8080/luceneweb/,输入lucene查询一下
  10. 可以看到结果:

Welcome to the Lucene Template application. (This is the header)

 

Document Summary
Jakarta Lucene – Resources – Jakarta Lucene [Jakarta Lucene] About Overview Powered by Lucene Who We Are Mailing Lists Resources Wiki FAQ (Official) jGuru FAQ Getting Started Query Syntax System Properties File Formats Javadoc Contributions A
org.apache.lucene.analysis.de (Lucene 1.4.3 API) org.apache.lucene.analysis.de Classes  GermanAnalyzer GermanStemFilter GermanStemmer WordlistLoader
org.apache.lucene.document (Lucene 1.4.3 API) org.apache.lucene.document Classes  DateField Document Field

 

。。。。。。。。。。。

分享到:
评论

相关推荐

    lucene 2.4.1源码在eclipse调试运行通过

    《深入剖析Lucene 2.4.1:在...总之,Lucene 2.4.1在Eclipse中的调试运行不仅是一个技术实践,也是学习和掌握全文检索技术的关键步骤。通过这种方式,我们可以逐步揭开Lucene的神秘面纱,提升我们的信息检索技术能力。

    luceneDemo_pure1aa_DEMO_clucene_

    在vc6中新建一个Win32 Console Application项目,命名为“luceneDemo”。将提供的“luceneDemo”文件加入到项目中,这是DEMO的主要代码。这个DEMO将展示如何使用Clucene的基本操作,包括创建索引、搜索索引等关键...

    lucene及分词工具说明

    本系统已在以下环境中进行了测试和调试: - 操作系统:Windows XP - 硬件配置:Intel(R) Dual E2160 1.8G, 内存1GB - 集成开发环境:Visual Studio 2008 #### 三、分词工具 分词工具基于厦门大学人工智能研究所...

    lucene测试案例

    5. **实战测试**:项目中的`spring-boot-lucene-demo`可能包含了一个完整的示例应用,包括了创建索引的测试用例、执行不同类型的搜索查询的测试用例,以及如何在Spring Boot环境下运行和调试这些测试。通过这个示例...

    lusence的一个demo和文档

    通过运行这个Demo,你可以看到如何创建索引、如何执行查询以及如何解析搜索结果。这个Demo涵盖了以下几个步骤: 1. 初始化索引目录:Lucene需要一个物理目录来存储索引文件。 2. 创建索引:读取数据源,如文件或...

    基于ASP.Net和Lucene.Net开发的站内搜索引擎Demo源码+项目说明+sln解决方案.zip

    该项目是个人毕设/课设/大作业项目,代码都经过严格调试测试,功能ok才上传,可快速上手运行!欢迎下载使用,若遇到问题请及时私信沟通,帮助解决。 该资源主要针对计算机、通信、人工智能、自动化等相关专业的学生...

    elasticsearch v6.3.2 演示demo

    为了运行和理解这个DEMO,你需要打开源代码,查看`src`目录下的Java类,理解它们是如何与Elasticsearch进行交互的。同时,根据`pom.xml`配置,使用Maven构建项目,生成可执行的JAR文件,然后在运行Elasticsearch的...

    esDemo.zip

    **三、运行与调试** 这个名为"esDemo"的项目,已经预配置好了Springboot与Elasticsearch的集成,只需修改`application.properties`中的Elasticsearch连接配置,确保它们指向你的Elasticsearch实例,然后运行项目...

    IKAnalyzer3.2.8.jar + doc(index.html)+demo 史上最全

    8. **错误处理与调试**:在遇到分词问题时,要学会查看日志和使用 IKAnalyzer 提供的工具进行调试,找出问题所在。 通过以上知识点的学习和实践,开发者能够熟练掌握IKAnalyzer的使用,提升其在处理中文文本时的...

Global site tag (gtag.js) - Google Analytics