springboot整合H2内存数据库实现单元测试与数据库无关性-创新互联
一、新建spring boot工程
二、工程结构
标题名称:springboot整合H2内存数据库实现单元测试与数据库无关性-创新互联
地址分享:http://jxruijie.cn/article/igjgc.html
新建工程的时候,需要加入JPA,H2依赖
二、工程结构
pom文件依赖如下:
<?xml version="1.0" encoding="UTF-8"?>4.0.0 com.chhliu.springboot.h3 springboot-h3 0.0.1-SNAPSHOT jar springboot-h3 Demo project for Spring Boot H2 org.springframework.boot spring-boot-starter-parent 1.4.3.RELEASE UTF-8 UTF-8 1.7 org.springframework.boot spring-boot-starter-data-jpa org.springframework.boot spring-boot-starter-web com.h3database h3 runtime org.springframework.boot spring-boot-starter-test test org.springframework.boot spring-boot-maven-plugin
标题名称:springboot整合H2内存数据库实现单元测试与数据库无关性-创新互联
地址分享:http://jxruijie.cn/article/igjgc.html