swagger

    0熱度

    2回答

    我的問題涉及到posted here。 我不得不改寫我的問題,因爲我覺得前面的一個太冗長了。再來一次吧! 我有一個REST API返回的資產清單,它的編碼是這樣的: @GET @Produces(MediaType.APPLICATION_JSON) public Response getAllAssets() { List<Asset> assets = new

    5熱度

    1回答

    這是我如何配置招搖: const openapi = Openapi.initialize({ paths: openApiPaths, app, apiDoc, }); const openApiSpec = openapi.apiDoc; console.log(openApiSpec); app.use(swagger

    2熱度

    1回答

    我有一個ASP.NET Core 2.0 Web API,我通過Swashbuckle添加了Swagger。這很好。 我還在ASP.NET Core中啓用了app.UseDeveloperExceptionPage()選項。這很好。 但他們一起玩得不好。因爲SwaggerUI只是將返回的HTML顯示爲文本。 對於GET請求,它不是一個大問題,因爲我只是將url粘貼到瀏覽器中。但對於POST不起作用

    1熱度

    1回答

    我試圖使用招搖解析器來解析和檢索在「swagger.json」信息字段(io.swagger.parser.SwaggerParser;) 下面是一個「swagger.json」的摘錄。 我試圖檢索「$ ref」:「#/ definitions/abc」。 "responses" : { "200" : { "description" : "abc", "sch

    3熱度

    1回答

    我們正在使用Swashbuckle來記錄我們的WebAPI項目(使用Owin)並試圖修改Swashbuckle生成的Swagger文件。 隨着DescribeAllEnumsAsStrings()和枚舉屬性類似下面,我們得到預期的結果: class MyResponseClass { public Color color; } enum Color { LightBlue

    1熱度

    1回答

    [HttpGet] [Route("students")] [SwaggerOperation(Tags = new[] { "Student" })] [SwaggerResponse(HttpStatusCode.OK, Type = typeof(ResponseModel<IList<Student>>))] [SwaggerResponseExample(HttpStatusCo

    1熱度

    1回答

    我在將swagger集成到我的項目中時遇到了一個問題。我在我現有的球衣api中集成了swagger(如described),並部署在weblogic服務器上。由於有不同的模塊,所以weblogic中已經有很少的罐子可用了,因此我面臨着衝突問題。以下是我所做的詳細說明。 的pom.xml <dependency> <groupId>io.swagger</groupId> <artifactId>s

    0熱度

    1回答

    我正在開發一個spring-boot maven項目(Maven 3.5,Java 8)。因爲在我的項目中使用揚鞭代碼生成,生成類,pom.xml中的「插件」標籤越來越大: <build> <plugins> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>sprin

    1熱度

    1回答

    我在this tutorial後面添加了Swagger和Swashbuckle生成器。現在,當導航到https://localhost:port/swagger/時,我可以看到生成的API文檔。請注意,我還沒有創建任何SwaggerController類 - 這都是由NuGet包處理的。 問題是,我的整個網站,甚至是API,都使用自定義LDAP進行身份驗證。我也想保護/swagger/頁面。但是,

    1熱度

    1回答

    假設我有一個YAML的OpenAPI定義 definitions: User: description: "User" type: "object" properties: firstname: type: "string" lastname: type: "string" password: