H2数据库在单元测试中的应用

server/2025/1/15 6:47:06/

H2数据库特征

用比较简洁的话来介绍h2数据库,就是一款轻量级的内存数据库,支持标准的SQL语法和JDBC API,工业领域中,一般会使用h2来进行单元测试

这里贴一下h2数据库的主要特征

  • Very fast database engine
  • Open source
  • Written in Java
  • Supports standard SQL, JDBC API
  • Embedded and Server mode, Clustering support
  • Strong security features
  • The PostgreSQL ODBC driver can be used
  • Multi version concurrency

还有一些附加的特征,也列一下

  • Disk based or in-memory databases and tables, read-only database support, temporary tables
  • Transaction support (read uncommitted, read committed, repeatable read, snapshot), 2-phase-commit
  • Multiple connections, row-level locking
  • Cost based optimizer, using a genetic algorithm for complex queries, zero-administration
  • Scrollable and updatable result set support, large result set, external result sorting, functions can return a result set
  • Encrypted database (AES), SHA-256 password encryption, encryption functions, SSL

H2数据库的两种连接模式

内嵌模式 Embedded Mode

在内嵌模式中,h2数据库和应用程序是在一个JVM进程中,这种模式的优点就是速度极快,缺点也是显而易见的,因为和应用程序在同一个进程中,是会共享内存、CPU、线程等资源的,如果共享资源没有协调好,很有可能就会造成数据库不可用甚至崩溃。

服务器模式 Server Mode

在服务器模式中,应用程序是通过JDBC的方式连接h2数据库,相比内嵌方式,这种模式的速率会有所降低,因为有数据传输的损耗。

可能还会有一些资料介绍说有第三种混合模式,第三种混合模式是针对两个应用来说的,第一个应用使用内嵌的方式连接h2数据库,另外一个应用通过服务器模式连接h2数据库,其实本质还是这两种模式。

H2数据库集成springboot

pom依赖

<dependency><groupId>com.h2database</groupId><artifactId>h2</artifactId><version>2.2.220</version>
</dependency>

配置文件

server:port: 9090mybatis:type-aliases-package: com.tml.mouseDemo.modelmapper-locations: classpath:mapper/*.xmlspring:datasource:driver-class-name: org.h2.Driverurl: jdbc:h2:mem:db_users;MODE=MYSQL;INIT=RUNSCRIPT FROM 'classpath:init_table.sql'username: tmlpassword: helloTmlh2:console:enabled: true

单元测试中,一般都是使用内嵌内存模式,内存模式不会造成数据的污染,因为数据会随着程序的结束而销毁

这里的init_table.sql是H2的初始化脚本,可以初始化单元测试用例需要的用例数据,也贴一下文本

create table  t_user
(id int not null primary key auto_increment,user_name varchar(100),password varchar(100),status int,create_time datetime);insert into t_user (user_name,password,status,create_time) values ('tml','hello world',1,now());

初始化脚本init_table.sql和配置文件application.yml的层级关系如下图

mapper接口

package com.tml.mouseDemo.mapper;import com.tml.mouseDemo.model.User;
import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Param;import java.util.List;@Mapper
public interface UserMapper {List<User> listByName(@Param("userName") String userName);User getOneUser(@Param("uid") Long uid);}

实体类

package com.tml.mouseDemo.model;import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;import java.io.Serializable;
import java.util.Date;@Data
@AllArgsConstructor
@NoArgsConstructor
public class User implements Serializable {private static final long serialVersionUID = -4489033966046239802L;private Long id;private String userName;private String password;private Integer status;private Date createTime;}

Mapper XML File

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.tml.mouseDemo.mapper.UserMapper"><resultMap id="BaseResultMap" type="com.tml.mouseDemo.model.User"><id column="id" jdbcType="BIGINT" property="id"/><result column="user_name" jdbcType="VARCHAR" property="userName"/><result column="password" jdbcType="VARCHAR" property="password"/><result column="create_time" jdbcType="TIMESTAMP" property="createTime"/><result column="status" jdbcType="INTEGER" property="status"/></resultMap><select id="listByName" resultMap="BaseResultMap">SELECT *FROM `t_user` tWHERE t.`user_name` = #{userName}</select><select id="getOneUser" resultMap="BaseResultMap">SELECT *FROM `t_user` tWHERE t.`id` = #{uid}</select></mapper>

至此,一个简单的springboot项目集成h2数据库就完成了。

利用h2进行单元测试

一个基于init_table.sql中的初始化数据的断言测试用例如下

package com.tml.mouseDemo;import com.tml.mouseDemo.mapper.UserMapper;
import com.tml.mouseDemo.model.User;
import lombok.extern.slf4j.Slf4j;
import org.junit.Assert;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.test.context.junit4.SpringRunner;import java.util.List;@SpringBootTest
@RunWith(SpringRunner.class)
@Slf4j
public class MouseDemoApplicationTests {@Autowiredprivate UserMapper userMapper;@Testpublic void testH2() {List<User> users = userMapper.listByName("tml");Assert.assertEquals(1, users.size());}}

H2数据库控制台

 当java进程在运行中的时候,并且程序是开启了h2数据库的控制台  【spring.h2.console.enabled=true】,此时是可以直接通过http://localhost:9090/h2-console访问控制台,端口是内嵌java应用的端口号,登录时需要用账号密码,账号密码就是配置文件application.yml中的username、password,效果图如下

总结

h2数据库的基本用法就是这样,大家可以根据h2数据库自身的特点尽情发挥,详情可以参考官网https://www.h2database.com/html/features.html

切记,不要在生产环境轻易使用h2数据库


http://www.ppmy.cn/server/158131.html

相关文章

android分区和root

线刷包内容&#xff1a; 线刷包是一个完整的android镜像&#xff0c;不但包括android、linux和用户数据&#xff0c;还包括recovery等。当然此图中没有recovery,但是我们可以自己刷入一个。 主要分区 system.img 系统分区&#xff0c;包括linux下主要的二进制程序。 boot.img…

如何在Ubuntu上安装和配置Git

版本控制系统&#xff08;VCS&#xff09;是软件开发过程中不可或缺的工具之一&#xff0c;它帮助开发者跟踪代码变更、协作开发以及管理不同版本的项目。Git作为当前最流行的分布式版本控制系统&#xff0c;因其高效性和灵活性而广受青睐。本文将指导你如何在Ubuntu操作系统上…

调用Kimi的API接口使用,对话,json化,产品化

背景 Kimi出来一年多了&#xff0c;其输出内容的质量和效果在早期的模型里面来说还是不错的&#xff0c;虽然现在有一些更好的效果的模型和它不分上下&#xff0c;但是kimi的搜索能力&#xff0c;长文本的总结能力&#xff0c;还有其产品化的丰富程度&#xff0c;我觉得是别的…

海外招聘丨卡尔斯塔德大学—互联网隐私和安全副高级讲师

雇主简介 卡尔斯塔德大学以研究、教育和合作为基础。通过让社区参与知识发展&#xff0c;卡尔斯塔德大学为地区、国家和国际研究和教育发展做出了贡献&#xff0c;旨在提高可持续性、民主和健康。我们富有创造力的学术环境以好奇心、勇气和毅力为特征。通过采取批判性方法&…

Perl语言的网络编程

Perl语言的网络编程 引言 在当今互联网迅猛发展的时代&#xff0c;网络编程已经成为了程序开发的重要部分。无论是网站后端开发&#xff0c;还是网络协议的实现&#xff0c;或者是分布式系统的构建&#xff0c;网络编程都是无法绕过的主题。本篇文章将深入探讨Perl语言在网络…

Node.js - 模块化与包管理工具

1. 前言 模块化是代码组织的方式&#xff0c;而包管理工具是管理模块的工具。在现代项目开发中&#xff0c;模块化和包管理工具几乎是不可分割的一部分&#xff0c;它们一起构成了高效的开发工作流。 包代表了一组特定功能的源码集合&#xff0c;包管理工具可以对包进行下载安…

huggingface/bert/transformer的模型默认下载路径以及自定义路径

当使用 BertTokenizer.from_pretrained(bert-base-uncased) 加载预训练的 BERT 模型时&#xff0c;Hugging Face 的 transformers 库会从 Hugging Face Model Hub 下载所需的模型文件和分词器文件&#xff08;如果它们不在本地缓存中&#xff09;。 默认情况下&#xff0c;这些…

C#调用OpenCvSharp实现图像的膨胀和腐蚀

图像膨胀和腐蚀操作属于图像处理中常用的形态学操作&#xff0c;其原理都是采用特定小矩形&#xff08;核矩形&#xff09;&#xff0c;将其中心位置与图像中的每个像素对齐后&#xff0c;对重合位置的像素执行特定处理后&#xff0c;将处理结果保存到中心位置对应的像素处&…