Kotlin × jooby에서 REST API with API reference
What?
간단하고 가벼운 마이크로 프레임 워크의 jooby를 Kotlin으로 만져보십시오.
Why?
일이라면 Spring이기 때문에 기분 전환에
Try
공식 HP
h tps : // 죠오 by. rg/
조속히 트라이
h tps : // 죠오 by. 오 rg / 쿠이 cks rt /
Kotlin gradle starter를 사용해보십시오
htps : // 기주 b. 코 m / 조오 바이 p 로지 ct / 코 t ぃ ー g et al d ぇ s r r
$ git clone https://github.com/jooby-project/kotlin-gradle-starter.git && cd kotlin-gradle-starter
$ ./gradlew joobyRun # hot reloadもしてくれる https://jooby.org/doc/devtools/#gradle-hot-reload
$ curl http://localhost:8080/
Hello Kotlin!
$ ./gradlew test # spekがstarterに入ってる
REST API 엔드포인트 추가
build.gradle
dependencies {
~~~
compile "org.jooby:jooby-jackson:$joobyVersion"
~~~
}
App.kt
import org.jooby.json.Jackson
data class Hello(val hello: String)
class App : Kooby({
use(Jackson())
~~~
get("/hello/{name}") { Hello(param("name").value()) }
})
$ ./gradlew joobyRun
$ curl http://localhost:8080/hello/taro | jq
{
"hello": "taro"
}
API reference를 도입해 보기
build.gradle
dependencies {
~~~
compile "org.jooby:jooby-apitool:$joobyVersion"
~~~
}
App.kt
import org.jooby.apitool.ApiTool
class App : Kooby({
~~~
use(ApiTool().swagger().raml())
~~~
})
$ ./gradlew joobyRun
$ curl http://localhost:8080/swagger
$ curl http://localhost:8080/raml
Swagger
RAML
감상
Reference
이 문제에 관하여(Kotlin × jooby에서 REST API with API reference), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/ryutoyasugi/items/74d81c071a7fa0048756텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)