Hibernate Search修改内容后再索引
EntityManagerFactory emf = Persistence.createEntityManagerFactory("searchPU");
EntityManager em = emf.createEntityManager();
FullTextEntityManager ftem = Search.getFullTextEntityManager(em);
ftem.getTransaction().begin();
List<Article> items = em.createQuery("FROM Article").getResultList();
for (Article a : items) {
Article a_ = a;
a_.setContent(a_.getContent().replaceAll("\\s+", ""));
ftem.index(a_);
}
ftem.getTransaction().commit();
em.close();
emf.close();
我希望将Article表中的Content字段的内容进行索引(Content中存放的是HTML代码),当然我希望将HTML标签过滤后再索引,但是这样事务提交后过滤后的结果就会保存到数据库,如何实现只索引Content的文本而不改变其在数据库中的值呢?使用spring管理事务,标注@Transactional(propagation = Propagation.NOT_SUPPORTED, readOnly = true)也无效,不懂~如何将查询结果变为游离态,不刷新到数据库?
另外,我是使用注解配置的实体,因此Hibernate会自动加入FullTextIndexEventListener监听器,有没有办法改变这个设置?
月下的但丁
10 years, 10 months ago