Olá pessoal, esotu estudando hibernate e estou com a seguinte exceção
Exception in thread "main" org.hibernate.HibernateException: Dialect class not found: org.hibernate.dialect.Oracle10gDialect
at org.hibernate.dialect.Dialect.instantiateDialect(Dialect.java:262)
at org.hibernate.dialect.Dialect.getDialect(Dialect.java:251)
at org.hibernate.tool.hbm2ddl.SchemaExport.<init>(SchemaExport.java:121)
at org.hibernate.tool.hbm2ddl.SchemaExport.<init>(SchemaExport.java:91)
at GeraTabela.main(GeraTabela.java:12)
Utilizo o Oracle 10g Express.
Meu hibernate.properties está assim
hibernate.dialect = org.hibernate.dialect.Oracle10gDialect
hibernate.connection.driver_class = oracle.jdbc.driver.OracleDriver
hibernate.connection.username = user
hibernate.connection.password = pass
hibernate.connection.url = jdbc:oracle:thin:@127.0.0.1:1521:xe
hibernate.show_sql = true
hibernate.format_sql = true
