0

我正在使用 springdoc-openapi-ui。我不想硬编码 swagger 文档的值(特别是示例)。我想从属性文件中读取这些值。我可以看到只能从属性文件中读取 openapi 注释的非常有限的属性,但是,例如,示例注释和标签不会被读取。有没有解决的办法 ?

@Schema(example = "${some.example}")

@ApiResponse(responseCode = "400",
             description = "Bad input parameter.",
             content =
             @Content(
                  mediaType = "application/json",
                  schema = @Schema(implementation = ErrorDetails.class),
                  examples = {@ExampleObject(value ="${error.example}")
4

0 回答 0