我使用org.springdoc:springdoc-openapi-ui:1.6.9
我有控制器:
@GetMapping
public ResponseEntity<String> getApplications(@ModelAttribute ApplicationFilter applicationFilter){return null;}
并具有类参数:
@Getter
@Setter
@NoArgsConstructor
public class ApplicationFilter {
@Parameter(name = "ids", required = true)
private List<Long> ids;
}
我需要ModelAttribute在Swagger中显示为parameter fields。
而是以body的形式真实的展现
如果在字段-result上添加@Schema(name = "This is field")
请告诉我。我需要做什么才能让我的@ModelAttribute显示为参数字段?
1条答案
按热度按时间u5i3ibmn1#
找到适合我的解决方案:
在参数对象上添加注解