I am trying to get access to SQLite by using "spring-boot-starter-data-jpa".
And the "application.properties" is used. The dialect is set at the "spring.jpa.database-platform". But the error of "DialectResolutionInfo cannot be null" happens. What should I do?
spring.jpa.database-platform=com.luminous.spring.dialect.SQLDialect
spring.jpa.hibernate.ddl-auto=create
spring.datasource.url=jdbc:sqlite:D:\\employee.db
spring.datasource.driver-class-name=org.sqlite.JDBC
spring.datasource.initialization-mode=always
spring.datasource.username = admin
spring.datasource.password = admin