💩 修复articleLucene查询错误

- 增加luceneArticle增加更新接口
This commit is contained in:
Suwen 2021-02-22 15:04:38 +08:00
parent 03c8e339df
commit 96739bf1cf
2 changed files with 20 additions and 9 deletions

View File

@ -83,7 +83,8 @@ public class LuceneServiceImpl implements LuceneService {
@Override
public void writeArticle(String id) throws Exception {
writeArticle(luceneMapper.getById(id), true);
// TODO 做新增或更新判断
writeArticle(luceneMapper.getById(id), false);
}
@Override
@ -92,20 +93,30 @@ public class LuceneServiceImpl implements LuceneService {
}
@Override
public void deleteArticle(String id) {}
public void deleteArticle(String id) {
try {
deleteIndex(id);
} catch (IOException e) {
e.printStackTrace();
}
}
private void writeArticle(ArticleLucene article, boolean create) throws Exception {
if (!create) {
int size = Objects.requireNonNull(new File(indexPath).listFiles()).length;
while (size-- >= 0) {
ArticleBeanIndex index = new ArticleBeanIndex(indexPath, size);
index.deleteDoc(article.getIdArticle());
}
deleteIndex(article.getIdArticle());
}
ArticleBeanIndex index = new ArticleBeanIndex(indexPath, 0x0);
ArticleBeanIndex index = new ArticleBeanIndex(indexPath, 777);
index.indexDoc(article);
}
private void deleteIndex(String id) throws IOException {
int size = Objects.requireNonNull(new File(indexPath).listFiles()).length;
while (size-- >= 0) {
ArticleBeanIndex index = new ArticleBeanIndex(indexPath, size);
index.deleteDoc(id);
}
}
/**
* 关键词搜索
*

View File

@ -62,7 +62,7 @@
</foreach>
</select>
<select id="getById" resultMap="DTOResultMap">
<select id="getById" resultMap="ResultMapWithBLOBs">
select art.id, art.article_title, content.article_content
from forest_article art
left join forest_article_content content on art.id = content.id_article