# I am the Watcher. I am your guide through this vast new twtiverse.
# 
# Usage:
#     https://watcher.sour.is/api/plain/users              View list of users and latest twt date.
#     https://watcher.sour.is/api/plain/twt                View all twts.
#     https://watcher.sour.is/api/plain/mentions?uri=:uri  View all mentions for uri.
#     https://watcher.sour.is/api/plain/conv/:hash         View all twts for a conversation subject.
# 
# Options:
#     uri     Filter to show a specific users twts.
#     offset  Start index for quey.
#     limit   Count of items to return (going back in time).
# 
# twt range = 1 1
# self = https://watcher.sour.is/conv/cyv24ia
解決日誌開關需求:SpringBoot 實現熱插拔 AOP
現在有這麼一個需求:就是我們日誌的開與關是交給使用人員來控制的,而不是由我們開發人員固定寫死的。大家都知道可以用 AOP 來實現日誌管理,但是如何動態的來實現日誌管理呢?AOP 源碼中的實現邏輯中有這麼一個步驟,就是會依次掃描 Advice 的實現類,然後執行。我們要做的就是自定義一個 Advice  的實現類然後,在用戶想要開啓日誌的時候就把 Advice 加到項目中來,關閉日誌的時候就把 Ad ⌘ Read more