### Funiture Application API Endpoint List Source: https://github.com/kanwangzjm/funiture/wiki/Home This comprehensive list enumerates all known API endpoints for the 'funiture' application. It includes various categories such as administrative functions (e.g., article, file, investment, schedule, system ACLs, roles, users), public access points, and general configuration paths. This serves as a reference for understanding the application's exposed services and their respective access points. ```APIDOC /admin/article/save.json /admin/article/update.json /admin/file/download.do /admin/file/upload.json /admin/investment/invalid.json /admin/investment/list.json /admin/page.do /admin/schedule/all.json /admin/schedule/cron.json /admin/schedule/executePage.do /admin/schedule/getListByGroupId.json /admin/schedule/page.do /admin/schedule/results.json /admin/schedule/update.json /article/list.json /article/read.json /captcha /config/page.do /config/page.json /config/reload.json /config/save.json /gen /investment/save.json /product/delete.json /product/page.json /product/save.json /serviceDegarding.do /sys/acl/list.json /sys/acl/query.json /sys/acl/save.json /sys/acl/tree.json /sys/acl/update.json /sys/acl/urlRegexp.json /sys/aclModule/delete.json /sys/aclModule/page.do /sys/aclModule/query.json /sys/aclModule/save.json /sys/aclModule/tree.json /sys/aclModule/update.json /sys/dept/delete.json /sys/dept/page.do /sys/dept/query.json /sys/dept/save.json /sys/dept/tree.json /sys/dept/update.json /sys/log/fuzzySearch.json /sys/log/page.do /sys/log/query.json /sys/log/recover.json /sys/role/aclTree.json /sys/role/acls.json /sys/role/changeAcls.json /sys/role/changeUsers.json /sys/role/delete.json /sys/role/list.json /sys/role/page.do /sys/role/page2.do /sys/role/query.json /sys/role/save.json /sys/role/unselectUserTree.json /sys/role/update.json /sys/role/users.json /sys/tool/regexp.json /sys/tool/select.json /sys/tool/update.json /sys/user/list.json /sys/user/noAuth.do /sys/user/page.do /sys/user/query.json /sys/user/save.json /sys/user/setPassword.json /sys/user/tree.json /sys/user/update.json /t/{url} ``` -------------------------------- ### Extract Mapped Request Paths from Catalina.out Log Source: https://github.com/kanwangzjm/funiture/wiki/Home This shell command is designed to parse the `catalina.out` log file to identify and list all unique, mapped request paths. It leverages a pipeline of standard Unix utilities: `grep` filters relevant log entries, `awk` extracts the specific URL path, and `sort | uniq` ensures the final output is a clean, sorted list of distinct endpoints. This is particularly useful for auditing exposed API surfaces or generating documentation from runtime logs. ```Shell cat catalina.out | grep ' - Mapped "' | awk '{print $7}' | awk -F ']' '{print $1}' | awk -F '[' '{print $2}' | sort | uniq ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.