Swagger错误:解析JSON / YAML响应

时间:2016-01-13 10:29:29

标签: maven spring-mvc swagger

我想为我的网络项目(API)实现swagger。我正在使用maven spring MVC。我使用以下链接作为参考: https://github.com/swagger-api/swagger-core/wiki/Swagger-Core-JAX-RS-Project-Setup-1.5.X

我在pom.xml文件中添加了以下依赖项:

   <dependency>
        <groupId>io.swagger</groupId>
        <artifactId>swagger-jersey-jaxrs</artifactId>
        <version>1.5.0</version>

        <exclusions>
        <exclusion>
            <groupId>org.springframework</groupId>
            <artifactId>spring-core</artifactId>
        </exclusion>
        <exclusion>
            <groupId>org.springframework</groupId>
            <artifactId>spring-web</artifactId>
        </exclusion>
        <exclusion>
            <groupId>org.springframework</groupId>
            <artifactId>spring-beans</artifactId>
        </exclusion>
        <exclusion>
            <artifactId>bean-validator</artifactId>
            <groupId>org.glassfish.hk2.external</groupId>
        </exclusion>
        </exclusions>

    </dependency>

在应用程序配置中:

<bean id="beanConfig" class="io.swagger.jaxrs.config.BeanConfig">
    <property name="title" value="Swagger Sample App" />
    <property name="version" value="1.0.0" />
    <property name="schemes" value="http" />
    <property name="host" value="localhost:8002" />
    <property name="basePath" value="/api" />
    <property name="resourcePackage" value="io.swagger.resources" />
    <property name="scan" value="true" />
    <property name="prettyPrint" value="true" />
</bean>

<bean id="apiListingResource" class="io.swagger.jaxrs.listing.ApiListingResource" />
<bean id="swaggerSerializers" class="io.swagger.jaxrs.listing.SwaggerSerializers"
    scope="singleton" />

如果我在浏览器上看到输出,那么我会看到以下屏幕: enter image description here

但如果我使用http://swagger.io/查看API详情,那么我会收到以下错误: enter image description here

我是新手,所以请帮助我摆脱这个问题。

1 个答案:

答案 0 :(得分:1)

请查看http://springfox.github.io/springfox/以获取spring-mvc的支持。核心招摇工具支持运动衫。