Jetbrains
- 活动总数 28
- 最后的活动
- 成员加入日期
- 关注 0 名用户
- 关注者数 0 名用户
- 投票数 0
- 订阅数 4
-
创建于 openApiGenerate treating .yaml as .json
已回答My openapi.yaml is:openapi: "3.0.3" info: title: Miit API version: "1.0" servers: - url: https://staging1.miit.co:8443/apiv2 description: staging (test) server paths: /profile: get:... -
创建于 Gradle: correctly create dependency on generate source
已回答I've seen so many examples of how to include generated OpenAPI source but none of them fit my situation. Here's my build.gradle.kts:val ktorVersion = "1.6.6" val exposedVersion = "0.37.3" val log4... -
创建于 Anyone using the OpenAPI generator? All generated data are kotlin.Any
已回答Using the OpenAPI generator plugin, it generates a load of files but the interface stub class declarations have `kotlin.Any` for attribute types. It doesn't matter what you put in the YAML type of... -
创建于 Kotlin import declaration is inserted incorrectly
已回答E.g., I have: import java.lang.StringBufferclass Stuff { val cursor: StringBuffer} and I add a `java.io.File` component: class Stuff { val cursor: StringBuffer val handle: File} then Intel...