# 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/taq5fgq
手把手帶你實現 Spring 中的 IoC 和 AOP
一、核心思想------IoC和AOP不是spring提出來的,在spring之前就已經存在,只不過更偏向理論化,spring在技術層面把這兩個思想做了非常好的實現。在手寫spring中的IoC和AOP之前,我們先來了解IoC和AOP的思想。1、IoC1.1 什麼是 IoC?IoC Inversion of Control(控制反轉、反轉控制),注意它是一個技術思想,不是技術實現。描述的事情:Ja ⌘ Read more