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.
我已经在 OpenCMS 上实现了我的搜索功能。索引资源来自许多路径(例如 /path/alternative/news 和 /path/news)。有一种方法可以对每个资源执行单独的搜索,还是我需要两个单独的索引?
一旦索引了单个资源,我们就可以使用搜索 bean 的 setSearchRoot() 方法。如果我想在 /path/alternative/news 中执行搜索,我设置了setSearchRoot("/path/alternative/news")其他,setSearchRoot("/path/news").
setSearchRoot("/path/alternative/news")
setSearchRoot("/path/news")
希望有帮助。