You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In my usual Todo app, creating anm entity with no datasource configured yet, I receive
io.quarkus.runtime.configuration.ConfigurationException: Model classes are defined for the default persistence unit but no default datasource found: the default EntityManagerFactory will not be created.
at io.quarkus.hibernate.orm.deployment.HibernateOrmProcessor.handleHibernateORMWithNoPersistenceXml(HibernateOrmProcessor.java:697)
at io.quarkus.hibernate.orm.deployment.HibernateOrmProcessor.configurationDescriptorBuilding(HibernateOrmProcessor.java:310)
at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.base/java.lang.reflect.Method.invoke(Method.java:566)
at io.quarkus.deployment.ExtensionLoader$2.execute(ExtensionLoader.java:920)
at io.quarkus.builder.BuildContext.run(BuildContext.java:277)
at org.jboss.threads.EnhancedQueueExecutor$Task.run(EnhancedQueueExecutor.java:2415)
at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1452)
at java.base/java.lang.Thread.run(Thread.java:834)
at org.jboss.threads.JBossThread.run(JBossThread.java:501)
It used to say: Hibernate extension cannt guess the dialect as no JDBC driver is specified by quarkus.datasource.driver
I'm not saying the the former was perfect but the new one is a bit cryptic with "default datasource" and EntityManager not started. It's not actionable what I can to do solve it. Pointing to the quarkus properties to look at would help.
The text was updated successfully, but these errors were encountered:
In my usual Todo app, creating anm entity with no datasource configured yet, I receive
It used to say: Hibernate extension cannt guess the dialect as no JDBC driver is specified by
quarkus.datasource.driver
I'm not saying the the former was perfect but the new one is a bit cryptic with "default datasource" and EntityManager not started. It's not actionable what I can to do solve it. Pointing to the quarkus properties to look at would help.
The text was updated successfully, but these errors were encountered: