SpringBoot集成内存数据库H2

2021-09-06  本文已影响0人  蓝不蓝编程

目标

在SpringBoot中集成内存数据库H2.

为什么

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

操作步骤

  1. 修改pom.xml文件
<dependency>
    <groupId>com.h2database</groupId>
    <artifactId>h2</artifactId>
    <scope>runtime</scope>
</dependency>
  1. 修改项目配置文件application.yml
spring:
  datasource:
    username: hsp
    password: 123456
    url: jdbc:h2:file:./blogDB
    driver-class-name: org.h2.Driver
    schema: classpath:schema.sql
    data: classpath:data.sql
    initialization-mode: always
    continue-on-error: true

  h2:
    console:
      enabled: true
      path: /h2
  1. 添加初始化数据文件
CREATE TABLE `blog` (
  `id` int AUTO_INCREMENT NOT NULL,
  `title` varchar(255) DEFAULT NULL,
  PRIMARY KEY (`id`)
);
insert into blog(id,title) values(1,'花生皮编程博客');
  1. 启动类:HspApplication
@MapperScan({"cn.hsp.blog"})
@SpringBootApplication
public class HspApplication {

    public static void main(String[] args) {
        SpringApplication.run(HspApplication.class, args);
    }

}
  1. Controller类:BlogController
@RestController
@RequestMapping("/blog")
public class BlogController {

    @Autowired
    private BlogMapper blogMapper;

    @GetMapping(value="/query")
    public List<Blog> query()
    {
        return blogMapper.query();
    }
}
  1. Mapper类:BlogMapper
@Repository
public interface BlogMapper {
    @Select(value = "select * from blog")
    List<Blog> query();
}
  1. 数据bean:Blog
@Data
public class Blog {
    private int id;
    private String title;
}

工程截图

运行

运行HspApplication即可

效果

完整源代码

https://gitee.com/hspbc/springboot_memdb.git

关于我

厦门大学计算机专业|华为八年高级工程师
十年软件开发经验,5年编程培训教学经验
目前从事编程教学,软件开发指导,软件类毕业设计指导。
所有编程资料及开源项目见https://juejin.cn/post/7002792005688360968

集成内存数据库系列

SpringBoot集成内存数据库H2
SpringBoot集成内存数据库Derby
SpringBoot集成内存数据库hsqldb
SpringBoot集成内存数据库Sqlite

上一篇 下一篇

猜你喜欢

热点阅读