Ring 和 Pedestal 之间的关系是什么 - 我需要知道 Ring 才能使用 Pedestal 吗?
what is the relationship between Ring and Pedestal - do I need to know Ring to use Pedestal?
我曾以为 Pedestal 是 Ring 的替代品,但是从所有示例中我看到 Pedestal 实际上使用的是 Ring。这是最令人费解的!我是否需要知道并理解 Ring 的工作原理才能有效地使用 Pedestal。从本质上讲,Pedestal 'stand on the shoulders of Ring' 还是打算完全取代它?
根据 crossclj.info(搜索 ring/
)ring/core
是 pedestal.service
的依赖项 - 因此我会说:
relationship between Ring and Pedestal ?
ring/core
是 io.pedestal/pedestal.service
的依赖项
具体来说,它似乎在其 interceptors
中使用了戒指,并且在基座的文档中提到了 The ability to utilize Ring Middleware as Pedestal Interceptors
。
假设您已经有一些环形处理器,您可以将它们用作基座拦截器,但如果没有,您可以自由选择不使用它们。
(免责声明:我既没有使用 Ring 也没有使用 Pedestal - 只是仔细阅读了文档)
我曾以为 Pedestal 是 Ring 的替代品,但是从所有示例中我看到 Pedestal 实际上使用的是 Ring。这是最令人费解的!我是否需要知道并理解 Ring 的工作原理才能有效地使用 Pedestal。从本质上讲,Pedestal 'stand on the shoulders of Ring' 还是打算完全取代它?
根据 crossclj.info(搜索 ring/
)ring/core
是 pedestal.service
的依赖项 - 因此我会说:
relationship between Ring and Pedestal ?
ring/core
是 io.pedestal/pedestal.service
具体来说,它似乎在其 interceptors
中使用了戒指,并且在基座的文档中提到了 The ability to utilize Ring Middleware as Pedestal Interceptors
。
假设您已经有一些环形处理器,您可以将它们用作基座拦截器,但如果没有,您可以自由选择不使用它们。
(免责声明:我既没有使用 Ring 也没有使用 Pedestal - 只是仔细阅读了文档)