How to specify dialect for a Autnomous Database in orange cloud?

Hello guys I’m trying to make a web app with spring boot framework, and spring throws me an error everytime that the dialect is not ok. How to implement this from the dependencies in my kotlin framework?

Im using
this 2 alternatives but something is not ok

spring.jpa.properties.hibernate.dialect=org.hibernate.dialect.Oracle12cDialect
spring.jpa.properties.hibernate.dialect=org.hibernate.community.dialect.Oracle12cDialect

Hey,

This seems more of an ORM question, so I’ll move it to that topic. For the available dialects, see the package: hibernate-orm/hibernate-core/src/main/java/org/hibernate/dialect at main · hibernate/hibernate-orm · GitHub. The correct name for the OracleDialect is:

org.hibernate.dialect.OracleDialect

or alternatively, see the dialect report: Supported Dialects