Spring Boot 如何在Sping Boot 中隐藏Swagger UI中的Models部分?

cs7cruho  于 2023-06-22  发布在  Spring
关注(0)|答案(2)|浏览(215)

我有一个 Boot 项目,我集成了swagger,用于API文档。
现在的问题是默认情况下显示的是模型部分,这是一个安全问题。我试过了,但无法隐藏。也有通过这个链接在这里How to hide the Models section in Swagger UI?

但在这里,他们也引用了一些index.html文件,但我只有后端,没有前端。如何做到这一点,请大家帮忙。
谢谢

sd2nnvve

sd2nnvve2#

answer为我工作!

@Bean
public UiConfiguration uiConfiguration() {
    return UiConfigurationBuilder.builder()            
            .defaultModelsExpandDepth(-1)
            .build();
}

相关问题