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.
当我们单击 Discovery 侧边栏方面的任何项目时,哪些文件正在调用?谁能告诉我确切的文件名和代码片段?
假设您正在使用 XMLUI ...
当您单击一个链接时,您的请求将被路由到 /discover。
Cocoon sitemap.xmap 包含以下匹配“discover”的规则。
https://github.com/DSpace/DSpace/blob/master/dspace-xmlui/src/main/resources/aspects/Discovery/sitemap.xmap#L112-L123
它将 SimpleSearch 映射到以下类
https://github.com/DSpace/DSpace/blob/master/dspace-xmlui/src/main/resources/aspects/Discovery/sitemap.xmap#L26
哪个调用代码
https://github.com/DSpace/DSpace/blob/master/dspace-xmlui/src/main/java/org/dspace/app/xmlui/aspect/discovery/SimpleSearch.java