Skip to main content
Filter by
Sorted by
Tagged with
0 votes
0 answers
41 views

I can docker push a local image to dockerhub just fine, but quarkus build fails with: ... Caused by: com.google.cloud.tools.jib.api.RegistryUnauthorizedException: Unauthorized for registry-1.docker.io/...
onouv's user avatar
  • 640
0 votes
0 answers
30 views

I'm starting an async-process through a REST request. As soon as the REST requests returns, I'm losing the MDC context inside my async execution code. I tried to "copy" it over with ...
Daniel's user avatar
  • 906
0 votes
1 answer
33 views

I have a question about Quarkus Langchain4j. I have made this Quarkus (Java 25) project with the purpose of exposing an API that receives a search text, processes it with an "extractor” AI ...
Julio César Estravis's user avatar
1 vote
1 answer
74 views

I'm migrating a JBoss EAP application to Quarkus. My application has multiple implementations of the same REST service interface for failover/fallback scenarios: ManagerClientImpl - Primary HTTP ...
SBW's user avatar
  • 45
0 votes
0 answers
53 views

I am using Quarkus 3.27.0 and trying to secure GraphQL subscriptions with the @Authenticated annotation. I pass the Authorization header with a valid token when connecting, but the subscription ...
Houssem's user avatar
0 votes
1 answer
32 views

I defined these simple models @NodeEntity(label = "Api") class Api { @Id @Property(name = "name") var name: String = "name" @Suppress("unused") ...
Patrice Conil's user avatar
0 votes
1 answer
43 views

In Quarkus, how do I modify HTTP headers to add "Authorization" from query parameter "jwt"? My WebSocket client is browser-based, so I can't set the header in the client. I tried ...
wiradikusuma's user avatar
  • 1,941
1 vote
1 answer
52 views

I have a Java Quarkus application which is using JBoss for logging. I am using a scheduled job via io.quarkus.scheduler.Scheduled like so: private static final Logger LOGGER = Logger.getLogger(...
Alessandro Escher's user avatar
Best practices
0 votes
1 replies
48 views

I have a quarkus cli application I compile native. Now I want to implement a self-update feature. That is, the cli application should be capable of updating itself with the newest compiled version. ...
col.panic's user avatar
  • 2,974
0 votes
2 answers
109 views

How can I write my log messages to database in my quarkus application? I tried to create a ExtHandler like this: package org.myorg; import io.agroal.api.AgroalDataSource; import jakarta.enterprise....
user31855812's user avatar
1 vote
1 answer
42 views

I am trying to follow this part of the documentation and use @WithSession("my-persistence-unit") with a named persistence unit. But I am not able to pass an any value there, so I get it only ...
guarenty's user avatar
1 vote
0 answers
40 views

So I have my Quarkus extension which holds default ContainerRequestFilter, ContainerResponseFilter, ClientRequestFilter and ClientResponseFilter. We use this extension across multiple applications and ...
patricius's user avatar
0 votes
0 answers
70 views

I'm using Quarkus + Panache Reactive + MySQL for my project. Since it's reactive, my connection pool uses Vertx SQL Pool. I've also enabled metrics to monitor the system status. I have a scheduled ...
ULRAMAN TIGA's user avatar
2 votes
1 answer
144 views

Using Quarkus 3.29.0 my Maven build seems to hardcode a profile-specific property which is picked up by a different profile when not explicitly overridden. The build produces a fast-jar that runs in ...
Mambo's user avatar
  • 103
1 vote
1 answer
89 views

I am attempting to create a class that serializes and deserializes a Java class into JSON. I am using Quarkus REST Jackson to convert between a class called NetInfo and JSON, writing to a file called ...
Factor Three's user avatar
  • 2,316
1 vote
1 answer
92 views

I'm encountering unexpected blocking behavior in a Quarkus application using RESTEasy Reactive and virtual threads - Just threw those in to see if they'd help but they did not. I have a resource with ...
Neo Geo4's user avatar
0 votes
0 answers
36 views

Currently, the DMN Editor (v0.32.0) only displays DMN files that are in the same directory as the currently opened DMN file. I have a Quarkus project with Kogito business rule engine, when DMN files ...
StM's user avatar
  • 1
3 votes
1 answer
139 views

Given this sample: final var ARABIC_GREGORIAN_DATE_FORMATTER = DateTimeFormatter.ofPattern("EEEE dd\\MM\\yyyy G").localizedBy(Locale.forLanguageTag("ar")); final var ...
Eng.Fouad's user avatar
  • 118k
0 votes
1 answer
100 views

I send emails to participants asynchronously so the main transaction isn't blocked. It works, but I need a workaround to make it work. The workaround is sleep(2000); This is important because ...
Paul's user avatar
  • 1,481
0 votes
0 answers
78 views

I am developing a project using Kotlin and the Quarkus framework (version 3.20 LTS), that connects to a MongoDB database, which has already been populated previously with some documents using the ...
talkingDesk's user avatar
1 vote
0 answers
53 views

I developed a REST API Quarkus project based on an OpenAPI specification to validate contract testing with Microcks. OpenAPI Specification openapi: 3.0.0 x-stoplight: id: 1q8257l49074g info: title:...
sonia belhadj's user avatar
0 votes
0 answers
62 views

I am doing this on a Quarkus app using Camel 4: .toD("https://endpoint?connectionsPerRoute=10&connectTimeout=2000&connectionRequestTimeout=2000%soTimeout=2000&responseTimeout=2000&...
TSSK's user avatar
  • 247
0 votes
0 answers
47 views

I'm attempting to add some response-time information to the logs of our Quarkus components so we can easily pinpoint slow requests and do general profiling based on log records. However, this seems to ...
rvman's user avatar
  • 1
0 votes
1 answer
36 views

We recently upgraded from Quarkus 3.20.x to Quarkus 3.26.4. In our applications we use quarkus-oidc to authenticate service requests with a Bearer token header. The token has been generated by an ...
Jan Vermeulen's user avatar
1 vote
1 answer
65 views

Each time my Quarkus app restarts it has a different Postgres port. There is testcontainers.reuse.enable=false in the ~/.testcontainers.properties. MacOS, run from Idea.
Dmitry's user avatar
  • 759
0 votes
0 answers
45 views

I have an entity with two LocalTimes @Entity @Cacheable @Table( name = "slot", uniqueConstraints = {@UniqueConstraint(columnNames = {"start_time", "end_time&...
Dmitry's user avatar
  • 759
0 votes
0 answers
75 views

I’m currently migrating an application from Spring Boot 3.0 to Quarkus. While mapping the equivalent dependencies, I noticed that Quarkus provides an integration with Spring Cloud Config Server via ...
stan chacon's user avatar
0 votes
1 answer
92 views

We have a parent pom that imports the quarkus-bom via: <quarkus.platform.version>3.27.0</quarkus.platform.version> and <dependencyManagement> <dependencies> ...
Bart Crets's user avatar
2 votes
1 answer
119 views

I'm migrating a Quarkus project from 3.20.2 to 3.27.0 on Windows, and the build fails with the following error: [ERROR] Build step io.quarkus.deployment.steps.ConfigGenerationBuildStep#...
JeevanKumar R's user avatar
1 vote
1 answer
42 views

I have a Quarkus project and I use Mooltiverse Nyx to manage the automated versioning of the application and I use Gradle as the build system Because the versions, when we are in a feature branch are ...
Hugo Dias's user avatar
  • 391
0 votes
1 answer
60 views

`I'm trying to update my Quarkus project from version 3.8.6 to 3.15.6.2 using the built-in quarkusUpdate command for Gradle. When I run the command: PowerShell .\gradlew quarkusUpdate The process ...
Antonio Castaldo's user avatar
2 votes
0 answers
51 views

I have a Quarkus 3 project with some @QuarkusTest which rely on smallrye-reactive-messaging-in-memory, and one @QuarkusIntegrationTest with a Kafka TestContainer. When I start the integration test, ...
Romain Wilbert's user avatar
0 votes
2 answers
76 views

I want to use per-request ConstraintWeightOverrides to allow users to customize the constraint weights. In order to not have to save a literal list of constraint names in the UI code, I want to add a ...
majube's user avatar
  • 1
0 votes
0 answers
62 views

I'm trying to integrate restate.dev into a quarkus application and I'm trying to set it up to use the same port as quarkus itself for incoming http traffic. Unfortunately I'm a noob when it comes to ...
Jens Møller's user avatar
0 votes
1 answer
106 views

I have a reverse proxy built on quarkus that forwards all http calls to another api. The GET requests work but, the PUTs/POSTs fail with exception: java.lang.IllegalStateException: Request has ...
Laazo's user avatar
  • 469
0 votes
0 answers
143 views

I am using the Quarkus REST Client. I would like to monitor the HTTP connection pool managed by PoolingHttpClientConnectionManager. Specifically, I would like to know: maximum number of connections ...
amine gh's user avatar
1 vote
0 answers
103 views

I’m building a GraalVM native image for a Quarkus/Java 21 project, and running into Jackson deserialization issues that work fine on JVM. When my app starts, Jackson fails to deserialize YAML config ...
amkon's user avatar
  • 111
0 votes
1 answer
58 views

i'm trying to setup a test project with quarkus and qute-templates by using kotlin, gradle, jpa/querydsl. Now a simple variable can't be rendered in qute: io.quarkus.qute.TemplateException: Rendering ...
judos's user avatar
  • 444
0 votes
2 answers
109 views

I'm working on a Quarkus project using Mutiny and Hibernate Reactive Panache. In one of my API endpoints, I need to perform three concurrent database operations: one query and two updates. My ...
tiga's user avatar
  • 3
0 votes
0 answers
53 views

I want to write integration tests for a Quarkus application with a main method using the @QuarkusMain annotation. Since it's not possible to inject any beans in a @QuarkusMainTest annotated test class ...
Adler auf Höhenflug's user avatar
0 votes
1 answer
172 views

After updating Quarkus in our project, from 3.21.4 to 3.24.4 our test suite now fails multiple tests (doesn't seem to always be the same amount, so there appears to be some flakiness) with this ...
user31394879's user avatar
0 votes
1 answer
68 views

I want to store the user who made the changes as well as the timestamp when the changes were made. I have a Quarkus backend with REST endpoints. The REST endpoints receive a REST model, which is then ...
unrated's user avatar
  • 280
0 votes
1 answer
83 views

Our application needs to connect with an Oracle database. We want to do this with 2 accounts ACCOUNT_1 --> has privileges to do create table statements etc for flyway ACCOUNT_2 --> executes the ...
Ino van den Berg's user avatar
0 votes
0 answers
47 views

My environment: Drools 10.1.0 Quarkus 3.23.4 Kotlin 2.1.21 UseCase: we have some rules which need to be stage-aware, eg prod, non-prod, testing. I am struggling with a RuleUnitData class which looks ...
Beat Luginbühl's user avatar
0 votes
0 answers
62 views

I'm trying to test an application running with a Quarkus main method annotated with @QuarkusMain. For test reasons I annotated my test class with @QuarkusMainTest which works fine so far. Now that I ...
Adler auf Höhenflug's user avatar
0 votes
0 answers
35 views

I have a Quarkus application with JNoSQL. The request is a-synchronized, and at first it is executed on the ForkJoinPool.commonPool-worker-38, but sometimes on the vert.x-eventloop-thread-5. If it is ...
holz name's user avatar
  • 113
0 votes
0 answers
47 views

I try to implement MCP server following the guide https://quarkus.io/blog/mcp-server/ and everything works fine. But when I try to start the app in dev mode with quarkus dev, the quarkus CLI does not ...
user3422290's user avatar
0 votes
1 answer
108 views

I'm trying to run a simple Quarkus application on my M1 macbook, and I'm facing the following error: Listening for transport dt_socket at address: 5005 Exception in thread "main" java.lang....
Saee Saadat's user avatar
1 vote
2 answers
112 views

I'm rather new to Java and I'm facing an error that I just can't figure out! I'm using an M1 mac, OpenJDK@21 and Java 21.0.8 (Installed from Brew) and Quarkus 3.25.3. When I use quarkus to generate a ...
Saee Saadat's user avatar
2 votes
2 answers
162 views

I need to deserialize JSON body of POST method into list of objects. So I have next quarkus service: import jakarta.ws.rs.POST import jakarta.ws.rs.Path @Path("/") class MyService { @...
sankranti's user avatar

1
2 3 4 5
99