Doubt with error "Unable to build Hibernate SessionFactory" Java

2

I have received the fonts and after doing the server settings, database etc, I am having this problem in compiling. Thank you if anyone can point you in the right direction.

[2017-09-11 10:12:46,640] Artifact multlevel-web:war: Error during artifact deployment. See server log for details.
[2017-09-11 10:12:46,640] Artifact multlevel-web:war: java.lang.Exception:
 {"WFLYCTL0080: Failed services" => {"jboss.persistenceunit.\"multlevel.war#primary\"" => "org.jboss.msc.service.StartException in service jboss.persistenceunit.\"multlevel.war#primary\": javax.persistence.PersistenceException: 
[PersistenceUnit: primary] Unable to build Hibernate SessionFactory
 Caused by: javax.persistence.PersistenceException: [PersistenceUnit: primary] Unable to build Hibernate SessionFactory
    Caused by: org.hibernate.tool.schema.spi.SchemaManagementException: Schema-validation: missing table [tb_cdm]"},"WFLYCTL0412:
 Required services that are not installed:" => ["jboss.persistenceunit.\"multlevel.war#primary\""],"WFLYCTL0180: Services with missing/unavailable dependencies" => undefined}
    
asked by anonymous 11.09.2017 / 21:38

1 answer

1

This is not a compilation issue.

This missing table [tb_cdm] indicates that Wildfly expected to find the tb_cdm table in PostgreSQL, but that table is not there.

    
11.09.2017 / 22:05