春天+火鸟



有人成功地将Spring连接到.gdb数据库或.fdb数据库吗?我几乎不需要帮助来执行一些查询并将其显示在屏幕上。互联网上几乎没有关于将春天连接到火鸟的信息......

谢谢

如果您将 spring boot 与 maven 一起使用,请使用以下内容更新您的应用程序。

spring.datasource.url:jdbc:firebirdsql://localhost:3050/C:\firebird\firebird.GDB
spring.datasource.driverClassName:org.firebirdsql.jdbc.FBDriver
spring.datasource.username:SYSDBA
spring.datasource.password:masterkey
spring.jpa.hibernate.ddl-auto:update
spring.jpa.show-sql: true
spring.jpa.properties.hibernate.format_sql=true

并记得相应地设置您的GDB位置,用户名,密码。

并在pom中添加以下依赖项.xml

<dependency>
    <groupId>org.firebirdsql.jdbc</groupId>
    <artifactId>jaybird-jdk18</artifactId>
    <version>2.2.12</version>
</dependency>

我使用 java8、gradle 6.6.1、SpringBoot 2.2.6 和 jaybird-jdk16:2.2.13

在应用属性中:spring.jpa.database-platform=org.hibernate.dialect.FirebirdDialectspring.datasource.driverClassName = org.firebirdsql.jdbc.FBDriverspring.datasource.url=jdbc:firebirdsql:XXX.XXX.X.XXX:/databases/firebird/name_file.fdbspring.datasource.password = XXXXspring.datasource.username = XXXX

spring.jpa.hibernate.ddl-auto=nonespring.jpa.open-in-view=false

相关内容

  • 没有找到相关文章

最新更新