使用 springboot + mybatis-plus 连接firebird(火鸟数据库)
- 首先准备springboot 工程并且引入mybatis-plus
- 引入firebird数据库驱动,下载地址;不想去官网点这里
- 配置springboot 中的yml信息
- 创建controller测试
yml配置详情
datasource:
master:
url: **
username: **
password: **
driver-class-name: com.mysql.jdbc.Driver
slave_1:
url: jdbc:firebirdsql:192.168.0.66/3050:D:\install-software\**\DB\test.FDB
username: test
password: 123456
driver-class-name: org.firebirdsql.jdbc.FBDriver
- url配置方式第一种
jdbc:firebirdsql:服务器IP地址/端口号:E:/boston/database/BAS_PB.FDB?encoding=UTF8
- url配置第二中方式
url: jdbc:firebirdsql://192.168.0.66:3050/test
- 两种方式都测试可用