Using IngresDialect with Java 17

Can anyone help regarding this error message? The connection apparently worked OK with Java 8.
Database connection Details:

spring.datasource.driverClassName=com.ingres.jdbc.IngresDriver

spring.jpa.properties.hibernate.dialect=org.hibernate.dialect.IngresDialect

spring.jpa.hibernate.ddl-auto=none

ERROR:

Failed to initialize JPA EntityManagerFactory: Unable to create requested service [org.hibernate.engine.jdbc.env.spi.JdbcEnvironment] due to: Unable to resolve name [org.hibernate.dialect.IngresDialect] as strategy [org.hibernate.dialect.Dialect]

Thanks,
John

Hello, with Hibernate 6 unsupported dialects were moved to the community package, you should use the new FQN: org.hibernate.community.dialect.IngresDialect. Find more details in our migration guide.

Thanks for the quick reply. I’m passing this along to the client.
John