quarkus
quarkus copied to clipboard
Quarkus: Supersonic Subatomic Java.
### Describe the bug This one is a little bit of a doozy, but it is my impression there might be a bug with how Integration test test instances are...
### Description This originates from Stack Overflow: https://stackoverflow.com/questions/69502561/quarkus-openshift-route-annotations# Possible answer: https://docs.openshift.com/container-platform/4.8/networking/routes/secured-routes.html We do not to improve the user experience and the documentation here. ### Implementation ideas _No response_
### Describe the bug Multiple issues related to Server Sent Events demonstrated in https://github.com/jimbogithub/sse. It contains reactive and non-reactive versions of a simple `TimeBroadcaster` broadcasting a timestamp event once per...
Fixes #26730. Implemented the exposure of the `getIfPresent` from the `CaffeineCache`, as described in the #26730. As this is my first PR, I tried to follow which test(s) should be...
## Describe the bug Executing the junit tests results in `Failed to initialize Arc` ### Expected behavior Running junit tests with success (Possible if I remove @QuarkusTest) ### Actual behavior...
### Description Hello, I would like to create multiple endpoints with the same url. Depending on request headers I would like to decide which method should be used. Currently I...
### Describe the bug Wen having plain jUnit tests and @QuarkusTests side by side, the jacoco coverage is missing the coverage from the jUnit test. This behaviour still exists after...
### Describe the bug Hello, if I register a Annotation in the BuildStep with an "InterceptorBindingRegistrarBuildItem" this added Annotation is not working if I annotate a RestClient method with the...
### Describe the bug the resteasy reactive @Path mapping have confused behaivours in my cases. please see the reproduced steps ### Expected behavior _No response_ ### Actual behavior _No response_...
I am creating simple hibernate mysql application with quarkus. Below is my database conf - **# datasource configuration** quarkus.datasource.url=jdbc:mysql://localhost:3306/quarkus_test quarkus.datasource.driver=com.mysql.cj.jdbc.Driver quarkus.hibernate-orm.dialect=org.hibernate.dialect.MySQL8Dialect quarkus.datasource.username=demo quarkus.datasource.password=demo quarkus.hibernate-orm.database.generation=drop-and-create quarkus.hibernate-orm.statistics=true quarkus.hibernate-orm.log.sql=true **I am using import.sql...