Hi everyone, just landed in this channel after a t...
# server
r
Hi everyone, just landed in this channel after a talk by Anton Arhipov 🙂 I'm currently building a web application in Kotlin using Quarkus as a framework. I'm trying to use generic repositories (for databases) and resources (for REST) to reduce my code. I created a test entity called Fruit which I then use in my FruitResource, which inherits the GenericResource. The Fruit object goes from the FruitResource, to the GenericResource, where I use it to instantiate a GenericRepository, and then do all the magic. The error I'm getting only says something about an unsatisfied dependency of the GenericRepository, which I'm instantiating in the constructor of the GenericResource with a generic (would be Fruit in this case). Does anyone have an idea what I'm doing wrong?