Hi,
I am not too sure if this will help but this is my current setup that I
have working on Ignite 2.4.

jpa.database-platform: org.hibernate.dialect.H2Dialect

and have the following Maven dependency.

        <dependency>
            <groupId>com.h2database</groupId>
            <artifactId>h2</artifactId>
            <version>1.4.196</version>
        </dependency>


Since Spring Boot 2.0 I have also had to exclude the following:

        <dependency>
            <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-starter-data-jpa</artifactId>
                <exclusions>
                    <exclusion>
                        <groupId>com.zaxxer</groupId>
                        <artifactId>HikariCP</artifactId>
                    </exclusion>
                </exclusions>
        </dependency>

All seems to work fine.

Hope this helps.

John

​

Reply via email to