springboot 连接 Access数据库

1、pom中导入maven包


net.sf.ucanaccess
ucanaccess
4.0.4

2、application.yml配置连接

spring:
datasource:
driver-class-name: net.ucanaccess.jdbc.UcanaccessDriver
url: jdbc:ucanaccess://D:/xxx/xxx/xxx/Database1.accdb;openExclusive=false;ignoreCase

3、创建mapper 写sql










数据库大致模式(这里只是为了记录配置连接,创建mapper接口,entity等就不需要在贴出来了)

springboot 连接 Access数据库_第1张图片

 

你可能感兴趣的:(springboot 连接 Access数据库)