凯发娱发k8

springboot集成内存数据库hsqldb的示例分析 -凯发娱发k8

2024-01-18

这篇文章给大家介绍springboot集成内存数据库hsqldb的示例分析,内容非常详细,感兴趣的小伙伴们可以参考借鉴,希望对大家能有所帮助。

在springboot中集成内存数据库hsqldb.

为什么

像h2、hsqldb、derby、sqlite这样的内存数据库,小巧可爱,做小型服务端演示程序,非常好用。最大特点就是不需要你另外安装一个数据库。

操作步骤

修改pom.xml文件


   org.hsqldb
   hsqldb

修改项目配置文件application.yml

spring:
  datasource:
    username: hsp
    password: 123456
    url: jdbc:hsqldb:mem://localhost/blogdb;shutdown=true
    driver-class-name: org.hsqldb.jdbcdriver
    schema: classpath:schema.sql
    data: classpath:data.sql
    initialization-mode: always
    continue-on-error: true

添加初始化数据文件

建表脚本:schema.sql

create table blog (
  id integer generated by default as identity(start with 1) not null primary key,
  title varchar(255) default null,
);

导入数据脚本:data.sql

insert into blog(id,title) values(1,'花生皮编程博客');

启动类:hspapplication

@mapperscan({"cn.hsp.blog"})
@springbootapplication
public class hspapplication {
 public static void main(string[] args) {
  springapplication.run(hspapplication.class, args);
 }
}

controller类:blogcontroller

@restcontroller
@requestmapping("/blog")
public class blogcontroller {
    @autowired
    private blogmapper blogmapper;
    @getmapping(value="/query")
    public list query()
    {
        return blogmapper.query();
    }
}

mapper类:blogmapper

@repository
public interface blogmapper {
    @select(value = "select * from blog")
    list query();
}

数据bean:blog

@data
public class blog {
    private int id;
    private string title;
}

工程截图

运行

运行hspapplication即可

关于springboot集成内存数据库hsqldb的示例分析就分享到这里了,希望以上内容可以对大家有一定的帮助,可以学到更多知识。如果觉得文章不错,可以把它分享出去让更多的人看到。

网站地图