I\'m trying to connect to Firebird database using Spring Data JDBC and Spring Boot. I\'ve created a simple app using Spring Tools. Spring Data JDBC doesn\'t recognize the di
I'm facing similar issues, but using Oracle DB.
The change I did in my project was simpler (I don't know if it will solve your problem with Spring Boot and Firebase)
Just replace HikariCP dependency with tomcat-jdbc in pom.xml:
org.springframework.boot
spring-boot-starter-data-jdbc
com.zaxxer
HikariCP
org.apache.tomcat
tomcat-jdbc
Good luck for you.