Spring Data JDBC Firebird dialect not recognized

前端 未结 5 961
谎友^
谎友^ 2021-01-13 19:28

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

5条回答
  •  难免孤独
    2021-01-13 20:05

    I Solve the problem with my colleague,my solution is (remove the dependency spring-boot-stater-data-jdbc keep the dependency spring-boot-starter-jdbc)

     
        org.springframework.boot
        spring-boot-starter-jdbc
    
    
       
            org.springframework.boot
            spring-boot-starter-data-jdbc
       
    

提交回复
热议问题