Questions tagged [smallrye]

SmallRye is community providing APIs and implementations tailored for Cloud development mostly, but not limited, to the specifications. The implemented APIs are tailored for Cloud Native development and container deployment.

Here you can find the main, Eclipse Microprofile, implemented specifications and their current status / version.

SmallRye provides many other community APIs such as [mutiny], which is another (yes) reactive API for the Java language.

160 questions
0
votes
2 answers

Quarkus Microservices - SmallRye

I use the SmallRye Health extension in Quarkus. The /q/health-ui is acutally only enabled in devmode. How can i enable it in the runtime? %runtime.quarkus.smallrye.health.ui.enable=true Does not work. Thanks for your help.
Tobias
  • 13
  • 3
0
votes
1 answer

How should 3rd party GraphQL client work with Quarkus Smallrye GraphQL subscription?

I am very new to Quarkus + GraphQL. I built a GraphQL service just for learning purpose at https://github.com/tigerinus/quakus-graphql-demo import java.util.Collection; import javax.inject.Inject; import…
wxh
  • 619
  • 7
  • 20
0
votes
1 answer

Kafka Channel name with a 'period' in Quarkus application

While I am playing with repo kafka-quickstart , I noticed that if I add a period to the channel name quarkus is failing to start. The channel name in the github repo is 'quotes' and I changed it to 'quotes.ch' all over the occurrences. the…
Johnyzhub
  • 382
  • 2
  • 4
  • 18
0
votes
1 answer

How to make Microprofile Metrics available on multiple paths on Wildfly26?

I am attempting to migrate from wildfly-18 to wildfly-26. I changed the application to use Microprofile for Metrics and Health Checks. Those are working and I have redirected the /metrics and /health endpoints from the wildfly management port to the…
SteveS
  • 1,008
  • 3
  • 18
  • 32
0
votes
3 answers

Maven quarkus project doesn't start anymore after upgrade to 2.7.3 or 2.7.4

After upgrade from 2.7.2 to 2.7.3 or 2.7.4 my quarkus project doesn't start anymore. I get following Exception: Caused by: java.lang.NoSuchFieldError: ACCESS_CONTROL_ALLOW_PRIVATE_NETWORK at…
0
votes
0 answers

Quarkus: how do I mock the smallrye-graphql-client using Mockito?

I am having some issues trying to mock the smallrye-graphql-client in my unit tests. I thought it would be a process similar to mocking the RestClient https://github.com/quarkusio/quarkus/issues/9630 but it doesn't work that way. GraphQL…
0
votes
1 answer

Mutinity: how to combine a Uni and a Multi?

I have the following method: public Uni getHMOStats(String outcode); That returns a Uni, which value needs to be set in the OutcodeStats objects created by this method: private Multi getOutcodeStats() { return…
0
votes
1 answer

Quarkus verify JWT signature from AWS Application Load Balancer

I'm using AWS Elastic Load Balancer to authenticate users, which signs the user claim so that applications can verify the signature and verify that the claims were sent by the load balancer, as described…
Sérgio
  • 13
  • 1
  • 3
0
votes
1 answer

Quarkus - swagger-ui - smallrye configuration

Some configurations regarding swagger-ui and smallrye openapi are defined in build time likes…
0
votes
1 answer

Quarkus @ConfigProperty not working with operator-sdk

I have a quarkus application which skeleton was generated using Operator-SDK with the following commands: > operator-sdk init --domain de.ilem0n --plugins quarkus.javaoperatorsdk.io/v1-alpha > operator-sdk create api --version=v1alpha1…
Peter C. Glade
  • 543
  • 2
  • 8
  • 16
0
votes
1 answer

Injecting a map of lists into configuration

I am trying to inject a dynamic map of lists into my Quarkus application and not sure if this is possible. I have not seen any documentation from Quarkus on this matter, so I am wondering if the smallrye-config even supports it. app: example: -…
user0000001
  • 2,092
  • 2
  • 20
  • 48
0
votes
1 answer

quarkus and jwt token, application.properties var don't work

I have a quarkus project I try to secure some of my endpoints with a Jwt token. So far, it don't work. everything is still accessible. my…
sab
  • 4,352
  • 7
  • 36
  • 60
0
votes
1 answer

How to convert a collection in config to environment variable in Microprofile/Quarkus/Smallrye

We are running our apps in a K8 Cluster and rely on the configuration by environment variables. For the conversion of application.properties/application.yaml parameters in Quarkus, the following conversion rules apply:…
0
votes
1 answer

JWT Token Encryption

I am looking to encrypt my JWT token. I have gone through the quarkus documentation and the various properties for JWT. However i am not able to figure out what is going wrong. The basic stuff with a simple signing bit works…
Victor
  • 1,207
  • 2
  • 13
  • 21
0
votes
0 answers

Binding a Quarkus applications health check to HTTP and HTTPS

I am using the quarkus-smallrye-health extension in my Quarkus application. Our load balancer for our container platform requires that our application expose a health check endpoint over HTTP. For the other endpoints, I would like those to be…
user0000001
  • 2,092
  • 2
  • 20
  • 48