我正在尝试从ReaderListener接口调用afterScan(...)方法,但未调用它。这是我的代码:
@SwaggerDefinition( info = @Info(
description = "My API",
version = "V1.2.3",
title = "The only API you'll ever need",
termsOfService = "share and care",
contact = @Contact(name = "Test-Bob", email = "[email protected]", url = "http://swagger.io"),
license = @License(name = "Apache 2.0", url = "http://www.apache.org")))
@Api(tags = {"something", "else"})
@Path("/myUrl/swagger/{type:json|yaml}")
public class MyApiListingResource extends BaseApiListingResource implements ReaderListener {
private static final Logger logger = LoggerFactory.getLogger(MyApiListingResource.class);
@Context ServletContext context;
@GET
@Produces({MediaType.APPLICATION_JSON, "application/yaml"})
@ApiOperation(value = "The swagger definition in either JSON or YAML",
hidden = true)
public Response getListing(@Context Application app, @Context ServletConfig servletConfig, @Context HttpHeaders headers,
@Context UriInfo uriInfo, @PathParam("type") String type) throws JsonProcessingException {
if (isNotBlank(type) && type.trim().equalsIgnoreCase("yaml")) {
return getListingYamlResponse(app, context, servletConfig, headers, uriInfo);
} else {
System.out.println("I found json!");
logger.debug("I'm also before!!!");
return getListingJsonResponse(app, context, servletConfig, headers, uriInfo);
}
}
@Override
public void beforeScan(Reader reader, Swagger swagger) {
System.out.println("I'm before!!!");
logger.debug("I'm also before!!!");
}
@Override
public void afterScan(Reader reader, Swagger swagger) {
System.out.println("I'm after!!!");
logger.debug("I'm also after!!!");
}
}
现在,当我致电以下服务时:
http://localhost:9081/myApp/myUrl/swagger/json
我确实收到了“我找到了json!”在控制台和日志中...但是控制台或日志中没有打印“之前”或“之后”注释。
我正在使用Swagger 1.5.10和Java7。我将提供所需的任何其他详细信息。
任何想法都欢迎!谢谢!
更新:如上所述,我尝试将@SwaggerDefinition注释添加到此类中,但仍然无法正常工作。
有什么想法我想念的吗?
最佳答案
我终于在这里找到了问题。显然,原始设计的问题是我在尝试实现ReaderListener的同一类上扩展了BaseApiListingResource
。无论出于什么原因(如果知道原因,请随时发表评论),每当我扩展ReaderListener
时,BaseApiListingResource
都不起作用。如果我在不扩展ReaderListener
的类上实现BaseApiListingResource
,则beforeScan
和afterScan
可以正常工作。
希望这可以帮助某人...