3

我使用下面的 maven 插件将 swagger 与我的应用程序集成在一起 https://github.com/martypitt/swagger-springmvc

我在我的 spring servlet xml 中配置了以下内容

<mvc:annotation-driven/> <!-- Required so swagger-springmvc can access spring's RequestMappingHandlerMapping  -->
<bean class="com.mangofactory.swagger.configuration.SpringSwaggerConfig" />

<mvc:default-servlet-handler/>

 <bean id="propertyConfigurer" class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
        <property name="locations" >
            <list>

                <value>/WEB-INF/swagger.properties</value>
            </list>
        </property>
    </bean>

我的招摇属性如下所示

documentation.services.basePath= http://payrollservice.com/customservice documentation.services.version=1.0

我生成的 api-docs.json 如下所示,我不确定为什么它没有基本路径以及为什么它有前缀“/default”

{
apiVersion: "1.0",
swaggerVersion: "1.2",
apis: [
{
path: "/default/custom-controller",
description: "backupset API"
}
],
info: {
title: "default Title",
description: "Api Description",
termsOfServiceUrl: "Api terms of service",
contact: "Contact Email",
license: "Licence Type",
licenseUrl: "License URL"
}
}
4

1 回答 1

7

这个“default”是“swagger group”的默认名称

https://github.com/martypitt/swagger-springmvc#swagger-group

swagger 组是这个库引入的一个概念,它只是应用程序中 Swagger 资源列表的唯一标识符。引入此概念的原因是为了支持需要多个资源列表的应用程序。

您通常只有一个组,它被命名为“默认”。如果你想改变它,你应该在你的 swagger 配置创建的SwaggerSpringMvcPlugin中设置一个组名。像这样的东西:

@Configuration
@EnableSwagger
public class MySwaggerConfig {
    private SpringSwaggerConfig springSwaggerConfig;

    @Autowired
    public void setSpringSwaggerConfig(SpringSwaggerConfig springSwaggerConfig) {
      this.springSwaggerConfig = springSwaggerConfig;
    }


    @Bean
    public SwaggerSpringMvcPlugin customImplementation() {
      return new SwaggerSpringMvcPlugin(this.springSwaggerConfig)
            .swaggerGroup("my-group");
    }
...
}

之后,您应该在 Swagger 生成的 API JSON URL 中包含如下内容:

...
apis: [
{
    path: "/my-group/custom-controller",
    description: "backupset API"
}
....
于 2014-09-10T11:16:33.887 回答