当前位置:   article > 正文

springboot整合IK分词器_springboot集成ik分词器

springboot集成ik分词器

核心代码:

private static Set segment(String text) throws Exception{  //text 为你要搜索的内容

Set<String> set = new HashSet<>();

StringReader re = new StringReader(text.trim());

IKSegmenter ik= new IKSegmenter(re,true);

Lexeme lex;

while((lex = ik.next())!=null){

set.add(lex.getLexemeText());

}

return set;

}

引入依赖:

<dependency>

<groupId>com.janeluo</groupId>

<artifactId>ikanalyzer</artifactId>

<version>2012_u6</version>

</denpendency>

IKAnalyzer.cfg.xml

<!DOCTYPE properties SYSTEM "http://java.sun.com/dtd/properties.dtd">

<properties>

<comment>IK Analyzer 扩展配置</comment>

<entry key="ext_dict">ikConf/ext.dic;</entry>

<!--禁止搜索的-->

<entry key="ext_stopwords">ikConf/stopword.dic;</entry>

</properties>

ext.dic和stopword.dic格式

车险理赔

财产险理赔

。。。

。。。

 

 

 

 

 

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小蓝xlanll/article/detail/604547
推荐阅读
相关标签
  

闽ICP备14008679号