Questions tagged [quarkus-jpa]
5 questions
4
votes
1 answer
Quarkus JPA fails validating schema
I'm doing a batch based on Quarkus.
This is my application.properties:
# datasource configuration
quarkus.datasource.db-kind = oracle
quarkus.datasource.username = XXX
quarkus.datasource.password = XXX
quarkus.datasource.jdbc.url =…

Fabrizio Stellato
- 1,727
- 21
- 52
2
votes
1 answer
Using a custom identity provider in Quarkus
In my current project, we store user login info inside a MongoDB collection. We would like to implement an authentication mechanism that checks the credentials from a request against the information stored in said MongoDB. There is a tutorial for…

arov00
- 169
- 1
- 8
0
votes
0 answers
Caused by: java.lang.NoSuchFieldError: SECURITY_JPA_REACTIVE | Quarkus
I have built an Item API that performs CRUD function, generates an otp token now I want to hash password using
BcryptUtil.bcryptHash(password)
but when I add the quarkus-security-jpa-reactive dependency
…

Plus Ultra
- 59
- 1
- 9
0
votes
1 answer
Quarkus NPE Persistence.createEntityManagerFactory
Im trying to migrate my projects to Quarkus. Unfortunately I'm using libs which initialize EntityManagerFactory not via Injection. My Problem is that Persistence.createEntityManagerFactory results in a NPE. As i looked a little deeper into the…

marandi
- 3
- 2
0
votes
1 answer
How to disable auto-detected JPA in Quarkus?
I'm building a quarkus project with 3 modules: api (jax-rs), web (vaadin) and model (shared). The model module contains entity classes annotated with JPA @Entity.
The api module can compile and use the classes sucessfully, however, the web module…

Julio Faerman
- 13,228
- 9
- 57
- 75