Spring Fox(Swagger-UI)2.9.2如何禁用“试用”按钮

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

我正在尝试从用户界面禁用“试用”按钮。

<dependency>
    <groupId>io.springfox</groupId>
    <artifactId>springfox-swagger-ui</artifactId>
    <version>2.9.2</version>
</dependency>

在我的Java类中,我正在执行以下类似操作,以尝试禁用按钮,但我尝试的所有属性似乎均无效。如何禁用“试用”按钮?

@GetMapping(path = "/swagger-resources/configuration/ui", produces = APPLICATION_JSON_VALUE)
public Object uiConfig() {
    HashMap<String, Object> map = new HashMap<>();
    ...
    1. map.put("supportedSubmitMethods", new String[0]);
    2. map.put("x-explorer-enabled", Boolean.FALSE);
    3. map.put("x-samples-enabled", Boolean.FALSE);
    ...
    return map;
}
firefox swagger-ui
1个回答
0
投票

下面的代码对我有用

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