大写请求实体

测试您的 HTTP 管道与大写中间件一起运行

The uppercase HTTP middleware converts the body of the request to uppercase letters and is used for testing that the pipeline is functioning. 它只应用于本地开发。

配置

在下述定义中,将请求体的内容变成大写:

  1. apiVersion: dapr.io/v1alpha1
  2. kind: Component
  3. metadata:
  4. name: uppercase
  5. spec:
  6. type: middleware.http.uppercase
  7. version: v1

此组件没有要配置的 metadata

Dapr配置

To be applied, the middleware must be referenced in configuration. See middleware pipelines.

  1. apiVersion: dapr.io/v1alpha1
  2. kind: Configuration
  3. metadata:
  4. name: appconfig
  5. spec:
  6. httpPipeline:
  7. handlers:
  8. - name: uppercase
  9. type: middleware.http.uppercase

相关链接