Dmitry Ermakov
Dmitry Ermakov
Hi. I agree, it's time to release Kobby 2.0 version, with Ktor 2 support. Additionally, in version 2.0 it is necessary to raise the minimum requirements for the Kotlin version...
See an example of a manually implemented Ktor 2 adapter [here](https://github.com/ermadmi78/kobby-gradle-example/tree/ktor2/cinema-api/src/main/kotlin/io/github/ermadmi78/kobby/cinema/api/kobby/kotlin/adapter/ktor)
Available since release 2.0.0-beta.01
Hi, @benasher44 Are there any plans to return to the issue of serialization support? Kotlin Serialization [1.5.0 available](https://github.com/Kotlin/kotlinx.serialization/releases/tag/v1.5.0). For example, [kotlinx-datetime](https://github.com/Kotlin/kotlinx-datetime) supports serialization. It would be great if `Uuid` also...
> It looks like the `@Serializer(forClass` is still considered experimental You can use the `@Serializable(with = MySerializer::class)` annotation instead. See more details [here](https://github.com/Kotlin/kotlinx.serialization/blob/master/docs/serializers.md#primitive-serializer).
I think it's enough to just annotate the UUID typealias with `@Serializable(with = UuidSerializer::class)` annotation. In my projects with Kollinx Serialization I use java UUID in the same way. I...
My example can be rewritten as follows First: ```kotlin typealias MyUUID = @Serializable(with = UUIDSerializer::class) java.util.UUID ``` Second: ```kotlin @Serializable data class MyDto( val revision: MyUUID? = null ) ```
Hi All. See Kotlin Spring Boot GraphQL Server with Spring Security authentication and authorization example here: https://github.com/ermadmi78/kobby-gradle-example
Hi, you can find GraphQL Spring Boot server example here: https://github.com/ermadmi78/kobby-gradle-example Tests example is placed here: https://github.com/ermadmi78/kobby-gradle-example/blob/main/cinema-server/src/test/kotlin/io/github/ermadmi78/kobby/cinema/server/CinemaServerTest.kt To run tests from IntelliJ IDEA install Kotest plugin: https://plugins.jetbrains.com/plugin/14080-kotest