我使用 swagger 来记录 resteasy API 的端点,并且我使用带有如下方法的 servlet 来提供 swagger.json 描述:
public void init(ServletConfig config) throws ServletException
{
super.init(config);
BeanConfig beanConfig = new BeanConfig();
beanConfig.setHost("localhost:8080");
beanConfig.setBasePath("/api");
beanConfig.setResourcePackage("my.rest.resources");
beanConfig.setScan(true);
}
我可以在 localhost:8080/api/swagger.json 访问 swagger.json。
但是,我的合作者希望避免使用 resteasy servlet 以外的额外 servlet,我想知道我是否可以通过资源类的方法提供 swagger 生成的 json,如下所示:
@GET
@Path("/myswagger")
@Produces("application/json")
public String myswagger(@Context UriInfo uriInfo)
{
Swagger swagger = new Swagger();
// Do something to retrieve the Swagger Json as a string
// ...
return(swaggerJsonString);
}
然后通过 localhost:8080/api/myswagger 访问 swagger 生成的 json。这可能吗?
最佳答案
可能而且很简单
import com.fasterxml.jackson.core.JsonProcessingException;
import io.swagger.annotations.*;
import io.swagger.jaxrs.Reader;
import io.swagger.models.Swagger;
import io.swagger.util.Json;
import javax.ws.rs.GET;
import javax.ws.rs.Path;
import javax.ws.rs.Produces;
import javax.ws.rs.core.MediaType;
import java.net.HttpURLConnection;
import java.util.HashSet;
import java.util.Set;
@SwaggerDefinition(
info = @Info(
title = "title",
version = "0.2",
description = "description",
termsOfService = "termsOfService",
contact = @Contact(
name = "contact",
url = "http://contact.org",
email = "info@contact.org"
),
license = @License(
name = "Apache2",
url = "http://license.org/license"
)
),
host = "host.org",
basePath = "",
schemes = SwaggerDefinition.Scheme.HTTPS
)
public class SwaggerMain {
@Path("/a")
@Api(value = "/a", description = "aaa")
public class A {
@GET
@Path("/getA")
@Produces(MediaType.APPLICATION_JSON)
@ApiOperation(value = "Method for A.")
@ApiResponses(value = {
@ApiResponse(code = HttpURLConnection.HTTP_OK, message = "OK"),
@ApiResponse(code = HttpURLConnection.HTTP_UNAUTHORIZED, message = "Unauthorized"),
@ApiResponse(code = HttpURLConnection.HTTP_NOT_FOUND, message = "Not found"),
@ApiResponse(code = HttpURLConnection.HTTP_INTERNAL_ERROR, message = "Internal server problems")
})
public String getA() {
return "Hello, A";
}
}
@Path("/b")
@Api(value = "/b", description = "bbb")
public class B {
@GET
@Path("/getA")
@Produces(MediaType.APPLICATION_JSON)
@ApiOperation(value = "Method for B.")
@ApiResponses(value = {
@ApiResponse(code = HttpURLConnection.HTTP_OK, message = "OK"),
@ApiResponse(code = HttpURLConnection.HTTP_UNAUTHORIZED, message = "Unauthorized"),
@ApiResponse(code = HttpURLConnection.HTTP_NOT_FOUND, message = "Not found"),
@ApiResponse(code = HttpURLConnection.HTTP_INTERNAL_ERROR, message = "Internal server problems")
})
public String getA() {
return "Hello, B";
}
}
public static void main(String[] args) {
Set<Class<?>> classes = new HashSet<Class<?>>();
classes.add(SwaggerMain.class);
classes.add(A.class);
classes.add(B.class);
Swagger swagger = new Reader(new Swagger()).read(classes);
try {
System.out.println(Json.mapper().writeValueAsString(swagger));;
} catch (JsonProcessingException e) {
e.printStackTrace();
}
}
}
给出 json:
{
"swagger": "2.0",
"info": {
"description": "description",
"version": "0.2",
"title": "title",
"termsOfService": "termsOfService",
"contact": {
"name": "contact",
"url": "http://contact.org",
"email": "info@contact.org"
},
"license": {
"name": "Apache2",
"url": "http://license.org/license"
}
},
"host": "host.org",
"tags": [
{
"name": "a"
},
{
"name": "b"
}
],
"schemes": [
"https"
],
"paths": {
"/a/getA": {
"get": {
"tags": [
"a"
],
"summary": "Method for A.",
"description": "",
"operationId": "getA",
"produces": [
"application/json"
],
"parameters": [],
"responses": {
"200": {
"description": "OK"
},
"401": {
"description": "Unauthorized"
},
"404": {
"description": "Not found"
},
"500": {
"description": "Internal server problems"
}
}
}
},
"/b/getA": {
"get": {
"tags": [
"b"
],
"summary": "Method for B.",
"description": "",
"operationId": "getA",
"produces": [
"application/json"
],
"parameters": [],
"responses": {
"200": {
"description": "OK"
},
"401": {
"description": "Unauthorized"
},
"404": {
"description": "Not found"
},
"500": {
"description": "Internal server problems"
}
}
}
}
}
}
关于java - 从资源类提供 swagger.json,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45842288/
在我的Controller中,我通过以下方式在我的index方法中支持HTML和JSON:respond_todo|format|format.htmlformat.json{renderjson:@user}end在浏览器中拉起它时,它会自然地以HTML呈现。但是,当我对/user资源进行内容类型为application/json的curl调用时(因为它是索引方法),我仍然将HTML作为响应。如何获取JSON作为响应?我还需要说明什么? 最佳答案 您应该将.json附加到请求的url,提供的格式在routes.rb的路径中定义。这
我真的很习惯使用Ruby编写以下代码:my_hash={}my_hash['test']=1Java中对应的数据结构是什么? 最佳答案 HashMapmap=newHashMap();map.put("test",1);我假设? 关于java-等价于Java中的RubyHash,我们在StackOverflow上找到一个类似的问题: https://stackoverflow.com/questions/22737685/
当我尝试安装Ruby时遇到此错误。我试过查看this和this但无济于事➜~brewinstallrubyWarning:YouareusingOSX10.12.Wedonotprovidesupportforthispre-releaseversion.Youmayencounterbuildfailuresorotherbreakages.Pleasecreatepull-requestsinsteadoffilingissues.==>Installingdependenciesforruby:readline,libyaml,makedepend==>Installingrub
我正在尝试使用boilerpipe来自JRuby。我看过guide从JRuby调用Java,并成功地将它与另一个Java包一起使用,但无法弄清楚为什么同样的东西不能用于boilerpipe。我正在尝试基本上从JRuby中执行与此Java等效的操作:URLurl=newURL("http://www.example.com/some-location/index.html");Stringtext=ArticleExtractor.INSTANCE.getText(url);在JRuby中试过这个:require'java'url=java.net.URL.new("http://www
我真的为这个而疯狂。我一直在搜索答案并尝试我找到的所有内容,包括相关问题和stackoverflow上的答案,但仍然无法正常工作。我正在使用嵌套资源,但无法使表单正常工作。我总是遇到错误,例如没有路线匹配[PUT]"/galleries/1/photos"表格在这里:/galleries/1/photos/1/edit路线.rbresources:galleriesdoresources:photosendresources:galleriesresources:photos照片Controller.rbdefnew@gallery=Gallery.find(params[:galle
我有一个非常简单的RubyRack服务器,例如:app=Proc.newdo|env|req=Rack::Request.new(env).paramspreq.inspect[200,{'Content-Type'=>'text/plain'},['Somebody']]endRack::Handler::Thin.run(app,:Port=>4001,:threaded=>true)每当我使用JSON对象向服务器发送POSTHTTP请求时:{"session":{"accountId":String,"callId":String,"from":Object,"headers":
我只想对我一直在思考的这个问题有其他意见,例如我有classuser_controller和classuserclassUserattr_accessor:name,:usernameendclassUserController//dosomethingaboutanythingaboutusersend问题是我的User类中是否应该有逻辑user=User.newuser.do_something(user1)oritshouldbeuser_controller=UserController.newuser_controller.do_something(user1,user2)我
什么是ruby的rack或python的Java的wsgi?还有一个路由库。 最佳答案 来自Python标准PEP333:Bycontrast,althoughJavahasjustasmanywebapplicationframeworksavailable,Java's"servlet"APImakesitpossibleforapplicationswrittenwithanyJavawebapplicationframeworktoruninanywebserverthatsupportstheservletAPI.ht
这篇文章是继上一篇文章“Observability:从零开始创建Java微服务并监控它(一)”的续篇。在上一篇文章中,我们讲述了如何创建一个Javaweb应用,并使用Filebeat来收集应用所生成的日志。在今天的文章中,我来详述如何收集应用的指标,使用APM来监控应用并监督web服务的在线情况。源码可以在地址 https://github.com/liu-xiao-guo/java_observability 进行下载。摄入指标指标被视为可以随时更改的时间点值。当前请求的数量可以改变任何毫秒。你可能有1000个请求的峰值,然后一切都回到一个请求。这也意味着这些指标可能不准确,你还想提取最小/
HashMap中为什么引入红黑树,而不是AVL树呢1.概述开始学习这个知识点之前我们需要知道,在JDK1.8以及之前,针对HashMap有什么不同。JDK1.7的时候,HashMap的底层实现是数组+链表JDK1.8的时候,HashMap的底层实现是数组+链表+红黑树我们要思考一个问题,为什么要从链表转为红黑树呢。首先先让我们了解下链表有什么不好???2.链表上述的截图其实就是链表的结构,我们来看下链表的增删改查的时间复杂度增:因为链表不是线性结构,所以每次添加的时候,只需要移动一个节点,所以可以理解为复杂度是N(1)删:算法时间复杂度跟增保持一致查:既然是非线性结构,所以查询某一个节点的时候