Spring Boot集成Access DB实现数据导入和解析

news/2024/11/8 8:54:18 标签: spring boot, 后端, java, access

1.什么是Access DB?

microsoft office access是由微软发布的关联式 数据库管理系统。它结合了 microsoft jet database engine 和 图形用户界面两项特点,是一种关系数据库工具。它在很多地方得到广泛使用,例如小型企业,大公司的部门,和喜爱 编程的开发人员专门利用它来制作处理数据的桌面系统。它也常被用来开发简单的web应用程序.

优点:

  • 存储方式单一:access管理的对象有表、查询、窗体、报表、页、宏和模块,以上对象都存放在后缀为(.mdb)的数据库文件种,便于用户的操作和管理。
  • 面向对象:access是一个面向对象的开发工具。它将一个应用系统当作是由一系列对象组成的,通过对象的方法、属性完成数据库的操作和管理,极大地简化了开发工作。同时,这种基于面向对象的开发方式,使得开发应用程序更为简便。
  • 界面友好、易操作
  • access是一个可视化工具,用户想要生成对象并应用,只要使用鼠标进行拖放即可,非常直观方便。系统还提供了表生成器、查询生成器、报表设计器以及数据库向导、表向导、查询向导、窗体向导、报表向导等工具,使得操作简便,容易使用和掌握。
  • access可以在一个数据表中嵌入位图、声音、excel表格、word文档,还可以建立动态的数据库报表和窗体等。access还可以将程序应用于网络,并与网络上的动态数据相联接,轻松生成网页。

 缺点:

access是小型数据库,既然是小型就有它根本的局限性:access 数据库不支持并发处理、数据库易被下载存在安全隐患、数据存储量相对较小等。而且在以下几种情况下数据库基本上会吃不消:

  1. 数据库过大,一般access数据库达到50m左右的时候性能会急剧下降。
  2. 网站访问频繁,经常达到100人左右的在线。
  3. 记录数过多,一般记录数达到10万条左右的时候性能就会急剧下降。

2.数据准备

测试数据库下载地址:

  • https://access-templates.com/download/access+2024/password+management+and+tracking+software-645.html

password-management-tracking-software-free-downloadxhnx2b

3.代码工程

实验目标

实现access 数据库导入

pom.xml

<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    <parent>
        <artifactId>springboot-demo</artifactId>
        <groupId>com.et</groupId>
        <version>1.0-SNAPSHOT</version>
    </parent>
    <modelVersion>4.0.0</modelVersion>

    <artifactId>accessDB</artifactId>

    <properties>
        <maven.compiler.source>8</maven.compiler.source>
        <maven.compiler.target>8</maven.compiler.target>
    </properties>
    <dependencies>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-web</artifactId>
        </dependency>

        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-autoconfigure</artifactId>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-test</artifactId>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>net.sf.ucanaccess</groupId>
            <artifactId>ucanaccess</artifactId>
            <version>5.0.1</version>
        </dependency>

    </dependencies>
</project>

controller

主要步骤如下

  • Saving the uploaded file.
  • Connecting to the Access database.
  • Querying data.
  • Processing and storing results in a list.
package com.demo.controller;

import org.springframework.web.bind.annotation.*;
import org.springframework.web.multipart.MultipartFile;
import java.io.File;
import java.io.IOException;
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.ResultSet;
import java.sql.Statement;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;

@RestController
@RequestMapping("/api/access")
public class AccessDatabaseController {

   // Upload Access database file and query data
   @PostMapping("/upload")
   public List<Map<String, Object>> uploadAndQuery(@RequestParam("file") MultipartFile file,
         @RequestParam("tableName") String tableName) {
      List<Map<String, Object>> results = new ArrayList<>();
      Connection connection = null;
      try {
         // Save the uploaded file to the server's temporary directory
         File tempFile = File.createTempFile("upload-", ".accdb");
         file.transferTo(tempFile);

         // Connect to the Access database
         String dbUrl = "jdbc:ucanaccess://" + tempFile.getAbsolutePath();
         connection = DriverManager.getConnection(dbUrl);

         // Query the specified table in the database
         Statement statement = connection.createStatement();
         String query = "SELECT * FROM " + tableName;
         ResultSet resultSet = statement.executeQuery(query);

         // Store query results in a List<Map<String, Object>>
         while (resultSet.next()) {
            Map<String, Object> row = new HashMap<>();
            int columnCount = resultSet.getMetaData().getColumnCount();
            for (int i = 1; i <= columnCount; i++) {
               String columnName = resultSet.getMetaData().getColumnName(i);
               row.put(columnName, resultSet.getObject(i));
            }
            results.add(row);
         }

         // Close the ResultSet and Statement
         resultSet.close();
         statement.close();

         // Mark temporary file for deletion upon JVM exit
         tempFile.deleteOnExit();

      } catch (Exception e) {
         e.printStackTrace();
      } finally {
         // Close the database connection
         if (connection != null) {
            try {
               connection.close();
            } catch (Exception e) {
               e.printStackTrace();
            }
         }
      }
      return results;
   }
}

以上只是一些关键代码,所有代码请参见下面代码仓库

代码仓库

  • GitHub - Harries/springboot-demo: a simple springboot demo with some components for example: redis,solr,rockmq and so on.(Access DB)

4.测试

  • 启动 Spring Boot应用
  • postman访问http://127.0.0.1:8088/api/access/upload

result

5.引用

  • https://access-templates.com/ 
  • Spring Boot集成Access DB实现数据导入和解析 | Harries Blog™

http://www.niftyadmin.cn/n/5743629.html

相关文章

ubuntu18.04 安装与卸载NCCL conda环境安装PaddlePaddle

cuda版本11.2 说明PaddlePaddle需要安装NCCL 1、Log in | NVIDIA Developer 登录官网 找到对应版本 官方提供了多种安装方式&#xff0c;本文使用Local installers (x86)本地安装 点击对应的版本下载如&#xff1a; nccl-local-repo-ubuntu1804-2.8.4-cuda11.2_1.0-1_amd6…

Django-------重写User模型

在 Django 中&#xff0c;重写自带的 auth 或 User 模型的原因通常涉及项目特定的需求和对用户数据管理的灵活性要求。以下是一些常见的原因&#xff1a; 自定义用户字段&#xff1a; Django 自带的 User 模型提供了基本的用户字段&#xff0c;如用户名、密码、邮箱等。但对于…

基于AFL的漏洞挖掘工具改进与实践项目申请

1.课题拟解决的关键技术问题&#xff0c;拟采取的技术路线和主要创新点&#xff1a; 本课题拟解决的关键问题是如何改进AFL的效率和效果&#xff0c;特别是在挖掘深度隐藏的漏洞方面。本研究将考虑如何突破AFL中模糊测试的盲目性&#xff0c;主要会进行&#xff1a;分析传统漏…

面相小白的php反序列化漏洞原理剖析

前言 欢迎来到我的博客 个人主页:北岭敲键盘的荒漠猫-CSDN博客 本文整理反序列化漏洞的一些成因原理 建议学习反序列化之前 先对php基础语法与面向对象有个大体的了解 (我觉得我整理的比较细致&#xff0c;了解这俩是个啥就行) 漏洞实战情况 这个漏洞黑盒几乎不会被发现&am…

后端Node学习项目-项目基础搭建

前言 各位好&#xff0c;我是前端SkyRain。最近为了响应公司号召&#xff0c;开始对后端知识的学习&#xff0c;作为纯粹小白&#xff0c;记录下每一步的操作流程。 项目仓库&#xff1a;https://gitee.com/sky-rain-drht/drht-node 因为写了文档&#xff0c;代码里注释不是很…

区块链技术入门:以太坊智能合约详解

&#x1f493; 博客主页&#xff1a;瑕疵的CSDN主页 &#x1f4dd; Gitee主页&#xff1a;瑕疵的gitee主页 ⏩ 文章专栏&#xff1a;《热点资讯》 区块链技术入门&#xff1a;以太坊智能合约详解 区块链技术入门&#xff1a;以太坊智能合约详解 区块链技术入门&#xff1a;以太…

Rust智能指针和生命周期

智能指针 在 Rust 中&#xff0c;智能指针是一种数据结构&#xff0c;它们的行为类似于指针&#xff0c;但提供了额外的功能&#xff0c;如自动内存管理。Rust 中的智能指针可以帮助开发者更安全地管理内存和资源&#xff0c;避免常见的内存错误&#xff0c;如空指针引用和悬垂…

第一章 初识Docker与容器

1、Docker定义 Docker是基于Go语言实现的开源容器项目。诞生于2013年初&#xff0c;由dotCloud公司&#xff08;后改名为 Docker Inc&#xff09;发起。 Docker的构想是要实现“Build&#xff0c;Ship and Run Any App&#xff0c;Anywhere”&#xff0c;通过对应用的封装Pac…