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.
目前,我在 netty 管道的末尾有一个处理程序,它几乎可以处理所有请求逻辑。(使用杰克逊、身份验证、速率限制等从 json 中解析对象。在执行器之后将这些放在管道中的各个阶段是否会更好地使用管道结构?
这是可重用性等问题。通常您有一个用于解码的处理程序,一个用于编码,一个用于业务逻辑。这允许更好的可重用性和更容易的测试。