feat: Implement job title suggestion service with caching and tokenization

This commit is contained in:
2026-07-16 10:02:56 +08:00
parent 8dea752d48
commit 1e7853b9a4
8 changed files with 343 additions and 1 deletions

View File

@@ -102,6 +102,26 @@
<artifactId>easy-es-boot-starter</artifactId>
<version>2.0.0</version>
</dependency>
<!-- Java 侧岗位名称预分词;使用 IKSegmenter不覆盖 Elasticsearch 自带的 Lucene 版本 -->
<dependency>
<groupId>com.jianggujin</groupId>
<artifactId>IKAnalyzer-lucene</artifactId>
<version>8.0.0</version>
<exclusions>
<exclusion>
<groupId>org.apache.lucene</groupId>
<artifactId>lucene-core</artifactId>
</exclusion>
<exclusion>
<groupId>org.apache.lucene</groupId>
<artifactId>lucene-queryparser</artifactId>
</exclusion>
<exclusion>
<groupId>org.apache.lucene</groupId>
<artifactId>lucene-analyzers-common</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>cn.hutool</groupId>
<artifactId>hutool-all</artifactId>