Skip to content

Tag: quarkus

How to disable live reloading in Quarkus?

I have a Qurkus application which I run in Dev mode: I have an issue that Quarkus reloads classes also when I don’t want it to (dependent project updated, etc) which takes quite a lot of time. Question: Is there a way to disable live reloading in dev mode? I went through the Quarkus documentation, but c…

How to get URI of current request?

I need to resolve URI of current request in Quarkus (I use Quarkus 1.13). I use RESTEasy as my rest framework. Current request URI is needed in my case to validate Mandrill webhook call. Simplified my current implementation looks like: Answer RESTEasy is implementation of JAX-RS and it provides facilities for…

Batch insert entities to DB (Quarkus, Hibernate)

First off: I’m not used to Quarkus or Hibernate (I’m pretty much all .net) Problem: My service receives a list of ~10k (Would guess thats the most common number). This comes via a resource endpoint, and it takes +10s for it to complete, Far to long. And the service is unresponsive. The statusDao.C…

Quarkus Maven Plugin not building anymore

For some reason the backend of our Application does not build correctly: Error message While using mvn clean install still works mvn compile quarkus:dev -pl web does not, throwing the following error message during the build of quarkus-maven-plugin:1.11.3.Final:dev: This continues with increasing time interva…

Send a simple POST request from Quarkus/Java

I want to send a simple POST request to another application to trigger some action there. I have a quarkus project and want to send the request from inside my CreateEntryHandler – is this possible in a simple way? Or do I need to add something like Apache Httpclient to my project? Does it make sense in …