iabughosh
iabughosh

Reputation: 551

Running Quarkus with persistence extension using h2 database

Dears, I am trying to run persistence guide by quarkus.io but using h2 server instead of postgresSql, now when i run mvn compile quarkus:dev, it compile then exists and give message build successfully without showing any debugging messages to know what happended !!!, how can trace my problem in this case ?

Note : i already configured logging for console and file but it no more shows any helpful messages after configuring JPA & Hibernate.

My Environment : OS : CentOS 7, Java : 1.8.0_181, Maven : 3.5.4, Quarkus : 0.11.0

Regards.

Upvotes: 0

Views: 1411

Answers (1)

John Clingan
John Clingan

Reputation: 3334

I found this GitHub issue, so you are not the first: https://github.com/quarkusio/quarkus/issues/1393.

In the meantime, try using "mvn package" and "java -jar target/runner". Set quarkus.log.level=TRACE or DEBUG in application.properties, which will be picked up when running via java -jar.

Hope this helps.

Upvotes: 2

Related Questions