SpringBoot模型没有显示在大摇大摆上

问题描述 投票:0回答:1

我正在使用swagger编写文档,但是我看到Swagger UI上的DTO变成空的。

这里是DTOPatientDto

我可以看到摇摇欲坠的模型是空的

Swagger UI

这里也是大摇大摆的配置

Swagger Config

任何人都可以帮忙。?

spring-boot swagger swagger-ui dto
1个回答
0
投票

您需要使用以下注释控制器:

@ApiImplicitParams({
        @ApiImplicitParam(
            name = "patientDto",
            dataType = "PatientDto",
            examples = @io.swagger.annotations.Example(
                value = {
                    @ExampleProperty(value = "’patientDto‘:{'fName': 'John', 'lName='Doe'}", mediaType = "application/json")
                })) 
    })

有关更多信息,请参见此讨论https://github.com/springfox/springfox/issues/2352

它为我工作。

© www.soinside.com 2019 - 2024. All rights reserved.