Bartosz Markowski
Bartosz Markowski
Hi! Using quarkus I've tried to create resource using code like this: ```kotlin @GraphQLApi @RequestScoped class SomethingResource( private val somethingService: SomethingService, ) { @Query("getSomething") suspend fun getSomething(): SomethingResponse { val...
I'm trying to write it second time. I still have problem with persist I need to write like this `person2.persist()`. There is still need to write proper deployment module to...
Hi! I'm migrating my app from old dropwizard version, and now I have problem. We have class `AppConfiguration` for all apps in company which we extend and it contains some...
HI! I was thinking about preparing mongo ocnnection with kotlin coroutine. And I found some issues: - Mongo client is final: ``` error: Cannot apply AOP advice to final class....