什么是 REST 架构中的端点?

What is endpoint in REST architecture?

我经常在 RESTful 架构的上下文中听到短语 "endpoint"。什么是端点?就像 class 中的方法一样,在 Java Spring 框架中用 @Controller 注释?

实际上无法在 google 中找到此问题的确切答案。

它只是一个可以访问 RESTful 服务的 URI。

https://example.com/api/products 是列出系统中所有可用产品的 URI 端点。

只是想我 post 一个答案,以防其他人遇到同样的问题。