Advertisement
Guest User

Untitled

a guest
Jul 7th, 2016
510
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.94 KB | None | 0 0
  1. <persistence-unit name="oracle">
  2. <provider>org.hibernate.jpa.HibernatePersistenceProvider</provider>
  3. <properties>
  4. <property name="hibernate.archive.autodetection" value="class" />
  5. <property name="hibernate.dialect" value="org.hibernate.dialect.Oracle10gDialect" />
  6. <property name="hibernate.connection.driver_class" value="oracle.jdbc.OracleDriver" />
  7. <property name="hibernate.connection.url" value="jdbc:oracle:thin:@192.168.77.132:49161:xe" />
  8. <property name="hibernate.connection.username" value="lunchapp" />
  9. <property name="hibernate.connection.password" value="lunchapp" />
  10. <property name="hibernate.show_sql" value="true"/>
  11. <property name="hibernate.flushMode" value="FLUSH_AUTO" />
  12. <property name="hibernate.hbm2ddl.auto" value="update" />
  13. </properties>
  14. </persistence-unit>
  15.  
  16. [2016-07-07 08:41:06,969] Artifact lunchtool:war exploded: Error during artifact deployment. See server log for details.
  17. [2016-07-07 08:41:06,970] Artifact lunchtool:war exploded: java.lang.Exception: {"WFLYCTL0080: Failed services" => {"jboss.persistenceunit.lunchtool#oracle" => "org.jboss.msc.service.StartException in service jboss.persistenceunit.lunchtool#oracle: javax.persistence.PersistenceException: [PersistenceUnit: oracle] Unable to build Hibernate SessionFactory
  18. Caused by: javax.persistence.PersistenceException: [PersistenceUnit: oracle] Unable to build Hibernate SessionFactory
  19. Caused by: org.hibernate.exception.SQLGrammarException: Error creating DatabaseInformation for schema migration
  20. Caused by: org.h2.jdbc.JdbcSQLException: Tabelle "ALL_SEQUENCES" nicht gefunden
  21. Table "ALL_SEQUENCES" not found; SQL statement:
  22. select sequence_name from all_sequences union select synonym_name from all_synonyms us, all_sequences asq where asq.sequence_name = us.table_name and asq.sequence_owner = us.table_owner [42102-173]"}}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement