Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Starter RESTful service with websocket notifications using Kotlin, Ktor and Exposed with H2, HikariCP and FlyWay

NotificationsYou must be signed in to change notification settings

raharrison/kotlin-ktor-exposed-starter

Repository files navigation

KotlinKtorBuildcodecov

Starter project to create a simple RESTful web service in Kotlin

Updated for Kotlin 2.2.0 and Ktor 3.2.0

Companion article:https://ryanharrison.co.uk/2018/04/14/kotlin-ktor-exposed-starter.html

Getting Started

  1. Clone the repo.
  2. In the root directory execute./gradlew run
  3. By default, the server will start on port8080. See belowRoutes section for more information.

Libraries used:

The starter project creates a new in-memory H2 database with one table forWidget instances.

As ktor is async and based on coroutines, standard blocking JDBC may cause performance issues when useddirectly on the main thread pool (as threads must be reused for other requests). Therefore, another dedicated threadpool is created for all database queries, alongside connection pooling with HikariCP.

Routes:

GET /widgets --> get all widgets in the database

GET /widgets/{id} --> get one widget instance by id (integer)

POST /widgets --> add a new widget to the database by providing a JSON object (converted to a NewWidget instance). e.g -

{"name":"new widget","quantity":64}

returns

{"id":3,"name":"new widget","quantity":64,"dateUpdated":1519926898}

PUT /widgets --> update an existing widgets name or quantity. Pass in the id in the JSON request to determine which record to update

DELETE /widgets/{id} --> delete the widget with the specified id

Notifications (WebSocket)

All updates (creates, updates and deletes) toWidget instances are served as notifications through a WebSocket endpoint:

WS /updates --> returnsNotification instances containing the change type, id and entity (if applicable) e.g:

{"type":"CREATE","id":12,"entity": {"id":12,"name":"widget1","quantity":5,"dateUpdated":1533583858169     }}

The websocket listener will also log out any text messages send by the client. Refer tothis blog post for some useful tools to test the websocket behaviour.

Testing

The sample Widget service and corresponding endpoints are also tested with 100% coverage. Upon startup of the main JUnit suite (via thetest source folder), the server is started ready for testing and is torn down after all tests are run.

  • Unit testing of services with AssertJ - DAO and business logic is tested by initialising an in-memory H2 database withExposed, using the same schema as the main app. With this approach database queries are fully tested without anymocking.
  • Integration testing of endpoints using a fully running server with Rest Assured - routing tests/status codes/responsestructure. This utilises the fact that Ktor is a small microframework that can be easily spun up and down as part ofthe test suite. You could also use the special test engine thatKtor provides,however my preference is to always start a full version of the server so that HTTP behaviour can be tested withoutrelying on special internal mechanisms.
  • Code coverage and reporting performed automatically by Kover as part of the Gradle build

About

Starter RESTful service with websocket notifications using Kotlin, Ktor and Exposed with H2, HikariCP and FlyWay

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

[8]ページ先頭

©2009-2025 Movatter.jp