We have a requirement to load a huge file to MySQL DB. I have written a simple QuarkusApplication with quarkus-reactive-mysql-client to execute a executeBatchA
I am developing a simple application where I would like to read the files from a remote URL and add them to the @ExampleObject. I am able to achieve this using
I'm using Azure Service Bus, and Managed ID to authenticate to it. I'm using Kotlin and Quarkus, in an AKS environment. Now my issue is that when I deploy my co
I am developing a Quarkus service-based application for which I am adding open API based annotations such as @ExampleObject. For this, I would like to add the r
I have a url like http://localhost:8080?scope=openid%20profile I want to transfer it to http://localhost:8080?scope=openid&scope=profile so that the followi
My RestClient is annotated by a custom annotation and I want to get the annotation value in a ClientRequestFilter. Here is my MicroProfile RestClient: @Path("/g
I want to create a test case for a class Foo. That class Foo gets an instance of Bar injected; however, there are different implementations of Bar, and the deci
I have the following situation when migrating and compiling in native mode a quarkus service from version 2.5 to 2.6 and it is the following: We have a JAR whic
The parameter quarkus.vertx.worker-pool-size allows me to configure the "Thread size of the worker thread pool", according to the quarkus guide - All configurat
I encounter this "Random/SplittableRandom" error while building my quarkus optaplanner application in a native image: docker run --env LANG=C --rm -v /Users/use
I have a problem with logs displayed in Splunk. Every exception element stack trace being splitted into separated log. Unfortunately I don't have access to Splu
In previous versions of Quarkus Json logging you where able to set quarkus.log.console.json.fields.timestamp.field-name=appTimestamp In the current version this
I've set up a prod configuration for my datasource to connect to a GCP MySQL instance, basically following this tutorial: https://quarkus.io/guides/deploying-to
I have just set up my project to use H2DatabaseTestResource in the tests. I also have created a custom PostgresDatabaseTestResource, following this brilliant bl
I have a configuration class, which I inject into another class. Configuration class looks as follows: @RequestScoped public class Configuration { @ConfigP
I have a quarkus app that has a POST api returning a Uni . The structure of Test class class Test { String name; Object data; } I am passing the below as d
I have a quite simple quarkus extension which defines a ContainerRequestFilter to filter authentication and add data to a custom AuthenticationContext. Here is
I am still lost using the Quarkus Cassandra client https://quarkus.io/guides/cassandra I am trying the whole day to get a pagination done with the quarkus integ
I use the Kotlin language to develop Quarkus based application. Regarding to the https://quarkus.io/guides/kotlin it is possible to write constructor injection
Recently I found this Quarkus extension that allows to use logback.xml for configuring the logger (JBoss LogManager is still the implementation). I've added the