首页 > TAG信息列表 > spring-restdocs

在Spring Rest Docs中记录byte []响应

我正在构建一个API并使用Spring Rest Docs(1.1.1.RELEASE)对其进行文档化,并且有一个api以字节数组形式返回图像. 我需要在REST文档中描述响应类型.我不确定如何使用FieldDescriptor做到这一点 当我尝试: //get mock byte array byte[] attachment = "Hello".getBytes(); FieldDes

如何在android中使用spring resttemplate在弹性搜索中通过Json进行搜索

您好我正在尝试使用spring RestTemplate在弹性搜索中搜索数据. ElasticSearch有用户名和密码,我想通过json搜索. 我为此编写了代码,但我没有得到任何结果或异常.我这是我生命中第一次这样做,很抱歉,如果有一些愚蠢的错误. @Override protected List<JobPosts> doInBackground(

java – Spring REST模拟上下文路径

我尝试使用以下代码片段为spring rest mocks设置上下文路径: private MockMvc mockMvc; @Before public void setUp() { this.mockMvc = MockMvcBuilders.webAppContextSetup(this.context) .apply(documentationConfiguration(this.restDocumentation))

java – 可以Spring restdocs生成像swagger这样的实时文档吗?

作为开发人员,我更喜欢spring restdocs.但作为文档的使用者,我发现swagger实时文档非常引人注目.这是无处不在的例子:http://petstore.swagger.io/ 有没有办法用spring restdocs记录我的休息api,但生成像swagger petstore这样的实时文档?如果是这样,你怎么做?解决方法:不,它不可能开箱

Grails 3 – Spring Rest Docs使用Rest确保在使用JSON视图时提供SnippetException

我正在尝试将Spring REST文档与Grails 3.1.4应用程序放心.我正在使用JSON视图. 完整代码为https://github.com/rohitpal99/rest-docs 在我使用的NoteController中 List<Note> noteList = Note.findAll() Map response = [totalCount: noteList.size(), type: "note"] render respo

如何使用MockMultipartFile编写spring-restdocs片段

我使用spring-restdocs进行弹簧单元测试. 这是我的mockmvc代码: mockMvc.perform(fileUpload("/api/enterprise/uploadImage") .file(imageFile) .with(csrf().asHeader()) .params(params) ).andExpect(status().isOk()); 但是