乐趣区

关于springboot:SpringBoot-DB-系列h2databse-集成示例-demo

【SpringBoot DB 系列】h2databse 集成示例 demo

h2dabase 基于内存的数据库,更常见于嵌入式数据库的应用场景,依赖小,功能齐全;一般来讲,失常的商业我的项目用到它的场景不多,然而在一些非凡的 case 中,还是比拟有用的,比方用于单元测试,业务缓存,一些简略的示例 demo 等;本文将手把手教你创立一个继承 h2dabase 的我的项目,并反对从 sql 中导入预约好的 schema 和 data

<!– more –>

I. 我的项目创立

本文对应的示例 demo,采纳 SpringBoot 2.2.1.RELEASE + maven 3.5.3 + IDEA 进行开发

1. pom 配置

对于如何创立一个 springboot 我的项目本文就不介绍了,在咱们创立好的我的项目中,pom.xml文件如下

<parent>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-parent</artifactId>
    <version>2.2.1.RELEASE</version>
    <relativePath/> <!-- lookup parent from repository -->
</parent>

<dependencies>
    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-web</artifactId>
    </dependency>
    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-data-jpa</artifactId>
    </dependency>
    <dependency>
        <groupId>com.h2database</groupId>
        <artifactId>h2</artifactId>
    </dependency>
</dependencies>

<build>
    <pluginManagement>
        <plugins>
            <plugin>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-maven-plugin</artifactId>
            </plugin>
        </plugins>
    </pluginManagement>
</build>

<repositories>
    <repository>
        <id>spring-snapshots</id>
        <name>Spring Snapshots</name>
        <url>https://repo.spring.io/libs-snapshot-local</url>
        <snapshots>
            <enabled>true</enabled>
        </snapshots>
    </repository>
    <repository>
        <id>spring-milestones</id>
        <name>Spring Milestones</name>
        <url>https://repo.spring.io/libs-milestone-local</url>
        <snapshots>
            <enabled>false</enabled>
        </snapshots>
    </repository>
    <repository>
        <id>spring-releases</id>
        <name>Spring Releases</name>
        <url>https://repo.spring.io/libs-release-local</url>
        <snapshots>
            <enabled>false</enabled>
        </snapshots>
    </repository>
</repositories>

重点关注一下 dependency 中的com.h2database,另外两个非必须,只是在前面的测试用例中会用到,举荐加上

从下面的引入也能够晓得,咱们将借助 JPA 来操作数据库

2. 属性配置

既然是连贯数据库,当然少不了数据库的相干配置,在我的项目的资源门路下,新建配置文件application.properties

# 数据库的相干配置
spring.datasource.url=jdbc:h2:~/h2-db
spring.datasource.username=test
spring.datasource.password=
spring.datasource.driverClassName=org.h2.Driver

下面的配置形式,和咱们的 mysql 数据库配置没有什么特地的,这里的 url 请留神一下

  • jdbc:h2:~/h2-db: 嵌入式应用姿态,会在用户根目录下生成一个名为 h2-db.mv.db 的文件(数据库的 schema 和 d column 就存在外面)
  • jdbc:h2:mem:DBName;DB_CLOSE_DELAY=-1: 内存模式,利用重启之后数据库会清空,所以在测试用例中,能够思考用这种

除了下面嵌入式的应用姿态之外,h2-dabase 还反对通过 tcp 形式,指定一个近程的目录

  • jdbc:h2:tcp://localhost/~/test

下面是 h2dabase 的根本配置,为了更敌对的展现,咱们开启了 h2dabase 的 web console 控制台

##h2 web console 设置
spring.datasource.platform=h2
#进行该配置后,h2 web consloe 就能够在近程拜访了。否则只能在本机拜访。spring.h2.console.settings.web-allow-others=true
#进行该配置,你就能够通过 YOUR_URL/h2 拜访 h2 web consloe
spring.h2.console.path=/h2
#进行该配置,程序开启时就会启动 h2 web consloe
spring.h2.console.enabled=true

最好开启一下 jpa 的 sql 语句

spring.jpa.show-sql=true
spring.jpa.generate-ddl=true

II. 实例测试

下面配置搞完之后,基本上就能够说是实现了 h2dabase 的集成了

0. 入口

@SpringBootApplication
public class Application {public static void main(String[] args) {SpringApplication.run(Application.class);
    }
}

SpringBoot 利用的启动入口,下面执行之后,咱们就能够通过 http://localhost:8080/h2 拜访 h2dabase 的控制台,留神上面框处的内容,与后面的配置文件保持一致

登录之后,就是一个倡议的数据库操作控制台了

1. Entity 定义

上面这个属于 JPA 的知识点,对于 jpa 有趣味的小伙伴,能够看一下后面的《JPA 系列教程》

@Entity
@Table(name = "test")
public class TestEntity {
    @Id
    private Integer id;
    @Column
    private String name;

    public Integer getId() {return id;}

    public void setId(Integer id) {this.id = id;}

    public String getName() {return name;}

    public void setName(String name) {this.name = name;}
}

2. Repository 接口

数据库操作接口,间接应用默认的 curd 即可,并没有额定的增加办法

@Repository
public interface TestRepository extends CrudRepository<TestEntity, Integer> {}

3. 测试 case

接下来给几个 CURD 的测试 case,来演示一下咱们的集成成果

@RestController
public class TestController {
    @Autowired
    private TestRepository testRepository;

    @GetMapping("/save")
    public TestEntity save(Integer id, String name) {TestEntity testEntity = new TestEntity();
        testEntity.setId(id);
        testEntity.setName(name);
        return testRepository.save(testEntity);
    }

    @GetMapping("/update")
    public TestEntity update(Integer id, String name) {Optional<TestEntity> entity = testRepository.findById(id);
        TestEntity testEntity = entity.get();
        testEntity.setName(name);
        return testRepository.save(testEntity);
    }

    @GetMapping("/list")
    public Iterable list() {return testRepository.findAll();
    }

    @GetMapping("/get")
    public TestEntity get(Integer id) {return testRepository.findById(id).get();}

    @GetMapping("/del")
    public boolean del(Integer id) {testRepository.deleteById(id);
        return true;
    }
}

实测 case 如下

# 新增一条记录
curl 'http://localhost:8080/save?id=1&name= 一灰灰'

# 查问记录
curl 'http://localhost:8080/get?id=1'

# 批改记录
curl 'http://localhost:8080/update?id=1&name= 一灰灰 Blog'

# 查问全副
curl 'http://localhost:8080/list'

# 删除记录
curl 'http://localhost:8080/del?id=1'

4. sql 文件导入

留神咱们后面的所有步骤,没有任何一个中央有阐明须要被动去创立一个名为 test 的表,这一点和咱们相熟的 mysql 是不一样的;

某些时候咱们可能心愿将筹备好的 sql 文件来初始化数据库,这个时候能够如下操作

对应的 sql 文件

表构造 schema-h2.sql

DROP TABLE IF EXISTS book_to_book_store;
DROP TABLE IF EXISTS book_store;
DROP TABLE IF EXISTS book;
DROP TABLE IF EXISTS author;

DROP SEQUENCE IF EXISTS s_author_id;
CREATE SEQUENCE s_author_id START WITH 1;

CREATE TABLE author (
  id INT NOT NULL,
  first_name VARCHAR(50),
  last_name VARCHAR(50) NOT NULL,
  date_of_birth DATE,
  year_of_birth INT,
  address VARCHAR(50),

  CONSTRAINT pk_t_author PRIMARY KEY (ID)
);

CREATE TABLE book (
  id INT NOT NULL,
  author_id INT NOT NULL,
  co_author_id INT,
  details_id INT,
  title VARCHAR(400) NOT NULL,
  published_in INT,
  language_id INT,
  content_text CLOB,
  content_pdf BLOB,

  rec_version INT,
  rec_timestamp TIMESTAMP,

  CONSTRAINT pk_t_book PRIMARY KEY (id),
  CONSTRAINT fk_t_book_author_id FOREIGN KEY (author_id) REFERENCES author(id),
  CONSTRAINT fk_t_book_co_author_id FOREIGN KEY (co_author_id) REFERENCES author(id)
);

CREATE TABLE book_store (name VARCHAR(400) NOT NULL,

  CONSTRAINT uk_t_book_store_name PRIMARY KEY(name)
);

CREATE TABLE book_to_book_store (book_store_name VARCHAR(400) NOT NULL,
  book_id INTEGER NOT NULL,
  stock INTEGER,

  CONSTRAINT pk_b2bs PRIMARY KEY(book_store_name, book_id),
  CONSTRAINT fk_b2bs_bs_name FOREIGN KEY (book_store_name)
                             REFERENCES book_store (name)
                             ON DELETE CASCADE,
  CONSTRAINT fk_b2bs_b_id    FOREIGN KEY (book_id)
                             REFERENCES book (id)
                             ON DELETE CASCADE
);

数据文件 data-h2.sql

INSERT INTO author VALUES (next value for s_author_id, 'George', 'Orwell', '1903-06-25', 1903, null);
INSERT INTO author VALUES (next value for s_author_id, 'Paulo', 'Coelho', '1947-08-24', 1947, null);

INSERT INTO book VALUES (1, 1, null, null, '1984', 1948, 1, 'To know and not to know, to be conscious of complete truthfulness while telling carefully constructed lies, to hold simultaneously two opinions which cancelled out, knowing them to be contradictory and believing in both of them, to use logic against logic, to repudiate morality while laying claim to it, to believe that democracy was impossible and that the Party was the guardian of democracy, to forget, whatever it was necessary to forget, then to draw it back into memory again at the moment when it was needed, and then promptly to forget it again, and above all, to apply the same process to the process itself -- that was the ultimate subtlety; consciously to induce unconsciousness, and then, once again, to become unconscious of the act of hypnosis you had just performed. Even to understand the word''doublethink''involved the use of doublethink..', null, 1, '2010-01-01 00:00:00');
INSERT INTO book VALUES (2, 1, null, null, 'Animal Farm', 1945, 1, null, null, null, '2010-01-01 00:00:00');
INSERT INTO book VALUES (3, 2, null, null, 'O Alquimista', 1988, 4, null, null, 1, null);
INSERT INTO book VALUES (4, 2, null, null, 'Brida', 1990, 2, null, null, null, null);

INSERT INTO book_store (name) VALUES
    ('Orell Füssli'),
    ('Ex Libris'),
    ('Buchhandlung im Volkshaus');

INSERT INTO book_to_book_store VALUES
    ('Orell Füssli', 1, 10),
    ('Orell Füssli', 2, 10),
    ('Orell Füssli', 3, 10),
    ('Ex Libris', 1, 1),
    ('Ex Libris', 3, 2),
    ('Buchhandlung im Volkshaus', 3, 1);

下面两个文件筹备好,接下来咱们如何导入呢?

借助 sql-maven-plugin 形式,在 pom 配置文件中,增加上面这段

<plugins>
    <plugin>
        <groupId>org.codehaus.mojo</groupId>
        <artifactId>sql-maven-plugin</artifactId>

        <executions>
            <execution>
                <id>create-database-h2</id>
                <phase>generate-sources</phase>
                <goals>
                    <goal>execute</goal>
                </goals>
            </execution>
        </executions>

        <configuration>
            <driver>org.h2.Driver</driver>
            <url>jdbc:h2:~/h2-db</url>
            <username>test</username>
            <password></password>
            <autocommit>true</autocommit>
            <srcFiles>
                <srcFile>src/main/resources/schema-h2.sql</srcFile>
                <srcFile>src/main/resources/data-h2.sql</srcFile>
            </srcFiles>
        </configuration>

        <dependencies>
            <dependency>
                <groupId>com.h2database</groupId>
                <artifactId>h2</artifactId>
                <version>1.4.200</version>
            </dependency>
        </dependencies>
    </plugin>
</plugins>

而后如下操作即可

导入胜利之后,再到 h2 控制台,就能够查看对应的数据

II. 其余

0. 我的项目

  • 工程:https://github.com/liuyueyi/spring-boot-demo
  • 我的项目源码: https://github.com/liuyueyi/spring-boot-demo/tree/master/spring-boot/100-h2database

1. 一灰灰 Blog

尽信书则不如,以上内容,纯属一家之言,因集体能力无限,不免有疏漏和谬误之处,如发现 bug 或者有更好的倡议,欢送批评指正,不吝感谢

上面一灰灰的集体博客,记录所有学习和工作中的博文,欢送大家前去逛逛

  • 一灰灰 Blog 集体博客 https://blog.hhui.top
  • 一灰灰 Blog-Spring 专题博客 http://spring.hhui.top

退出移动版