4,761
questions
0
votes
0
answers
9
views
How to properly declare ResourceBundle in Quarkus Native build? (MyFaces Extension)
I'm trying to load a Java's class as Resource bundle in faces-config.xml:
<application>
<resource-bundle>
<base-name>app.LanguageBundle</base-name>
<var&...
0
votes
0
answers
7
views
@PermissionsAllowed Quarkus annotation and Keycloak configuration. Behaviour is not what I expect
My controller:
@PermissionsAllowed("objects:view")
@GET
@Path("/perm")
@Produces(MediaType.TEXT_PLAIN)
public String permission() {
return "Hello ...
1
vote
1
answer
54
views
How to escape "continuation hell"?
I'm currently writing a reactive web application with quarkus. Every so often, I find my self in something which I would call "continuation hell" where I chain several calls to the database ...
0
votes
0
answers
11
views
Quarkus Logging in a multi-maven-module
I have a Multi-Maven-module where some modules are quarkus-modules and others aren't.
It's clear to me that i can use io.quarkus.logging.Log in the quarkus-modules but is it possible to use quarkus ...
0
votes
0
answers
12
views
Custom GrpcSecurityMechanism does not block requests with no authorization key in metadata
I have the following custom GrpcSecurityMechanism implemented:
package ...;
import com.nimbusds.jose.jwk.source.RemoteJWKSet;
import com.nimbusds.jose.proc.SecurityContext;
import io.grpc.Metadata;
...
2
votes
1
answer
32
views
Availability of Quarkus Quartz extenion as a stable feature
We would like to use the Quartz extension in our app. as it could make scheduled tasks much easier to handle and more generally make things a lot simpler.
However, the fact that it is currently a '...
0
votes
0
answers
7
views
How to add additional Kubernetes resources to a Quarkus Helm chart?
How to add additional resources to the Helm chart generated by the Quarkus Helm extension?
Just adding to the src/main/helm folder does not work.
E.g. we need to add a SecretProviderClass and ...
0
votes
0
answers
28
views
KeyCloak custom SPI integration with Quarkus
How to setup and use features of quarkus in the integration with keycloak where we have custom SPI's, and implemented AbstractOIDCProtocolMapper,AbstractIdentityProviderMapper interfaces so that we ...
0
votes
0
answers
17
views
how to intercept outgoing SQL statements using Quarkus + Hibernate Reactive (StatementInspector)
How can I intercept (and modify) the outgoing SQL statements using Quarkus and Hibernate Reactive?
I tried to do so by implementing a custom StatementInspector, but somehow the inspector is not ...
2
votes
2
answers
50
views
Quarkus Reactive Messaging - Exception Handler
We use Quarkus Messaging (with the "smallrye-jms" extension in order to connect to IBM MQ) with a converter to transform the messages received in strings, into a Java object.
When receiving ...
0
votes
1
answer
55
views
How to put Microprofile / OpenAPI annotations into interface for generating Swagger-file while keeping source-code clean
In Quarkus, I need to define an API that will result in a Swagger-UI JSON/YAML-File to give out to consumers.
This works as expected/documented by defining many annotations in the REST-endpoint. For ...
0
votes
1
answer
42
views
Quarkus Swagger UI Hibernate Delete Request to PostgreDB fail silently
I have a Quarkus project using PostgreSQL and SwaggerUI, in which I am able to manually delete rows from tables in the IntelliJ DB UI, but when I try to do it with a DELETE request it fails without ...
0
votes
1
answer
42
views
How to have multiple ports on Quarkus?
I realized I cannot set multiple ports in application.properties. Is there any way to set the multiple ports on Quarkus? I know I can set up multiple ports by reverse proxy, but I want "real"...
0
votes
1
answer
14
views
Quarkus JBeret: Is there a way to obtain the JobContext after the job finished?
I'm writing some integration tests for our Quarkus JBeret application and I'm trying to get the transientData from the JobContext to check the values stored in there.
Any idea if this is possible ?
I'...
1
vote
0
answers
18
views
Can I log structured Splunk event from Quarkus using Splunk HEC and Slf4j?
I am quite new with Java, a bit newer with Quarkus and totally new to Splunk.
I am working on a Quarkus microservice using (quite magically) Sl4j to send application logs to Splunk.
using
@Slf4j
...
...