Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否可以使用 Hibernate Search(使用 FullTextSession)并行搜索多个表以在数据库上按关键字搜索?
感谢开发人员的回应..
是的。在我们的项目中,我们有一种方法来搜索每个表/实体:
List< Object[] > multiFieldSearch(Class< ? > entityClass, List fields, Sort sort, String[] projectionFields, int maxResultsCount);
您可以创建多个线程来搜索不同的表/实体,然后以您需要的方式聚合所有结果。