Route - CI/CD用語集の定義
route は、リクエストのパスとメソッドを、それを処理する handler へのマッピングです。
route は、受信したリクエストのパスとメソッドを、それを処理する handler にマッピングするルールです。ルーティング設定はサービスとともにデプロイされ、CI は定義された各 route が解決されることをテストできます。
route は URL とコードが出会う場所です。テストはルーティングテーブルを列挙し、各 route が handler に到達し、404 ではなく期待どおりの status を返すことを確認します。
関連ガイド
Endpoint - CI/CD Glossary DefinitionEndpoint: An endpoint is a specific URL and method combination that an API exposes to perform an operation, s…
Middleware - CI/CD Glossary DefinitionMiddleware: Middleware is code that runs in the request pipeline before or after the main handler, handling c…
API Gateway - CI/CD Glossary DefinitionAPI Gateway: An API gateway is a server that sits in front of backend services and handles cross-cutting conc…