博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
[Spring boot] Configuring and Accessing a Data Source
阅读量:5298 次
发布时间:2019-06-14

本文共 876 字,大约阅读时间需要 2 分钟。

We need our data persistence with configuring our datasouce:

In application.properties:

spring.h2.console.enabled=truespring.h2.console.path=/h2spring.datasource.url=jdbc:h2:file:~/gs-spring-bootspring.datasource.username=saspring.datasource.password=spring.datasource.driver-class-name=org.h2.Driver
spring.datasource.max-active=10 spring.datasource.max-idl=8 spring.datasource.max-wait=10000 spring.datasource.min-evictable-idle-time-millis=1000 spring.datasource.min-idle=8 spring.datasource.time-between-eviction-runs-millis=1

 

"

spring.datasource.url=jdbc:h2:file:~/gs-spring-boot

" tells to save the in memory data into a file called 'gs-spring-boot', you can name the file whatever you want.

 

Rebuild the application, login h2:

Make sure you change the JDBC URL. Now everytime you restart the server, data won't lost

 

转载于:https://www.cnblogs.com/Answer1215/p/10269283.html

你可能感兴趣的文章
could not get next sequence value
查看>>
DOM概述
查看>>
Nginx的知识分享,技术分享
查看>>
git 分布式版本控制了解
查看>>
java获取方法的参数名称列表
查看>>
ASP.NET 会话状态【一】
查看>>
day 38 进程 与 子进程 (开启进程 + 进程中的数据隔离 + 守护进程 + 进程中的其他方法 )...
查看>>
dubbo注册中心介绍
查看>>
在netty3.x中存在两种线程:boss线程和worker线程。
查看>>
1489 蜥蜴和地下室
查看>>
【HTML/XML 10】XML文档中的Schema文件
查看>>
C语言中整型运算取Ceiling问题
查看>>
分治——最近点对
查看>>
Spring中jdbc Template使用
查看>>
什么是你的核心竞争力?
查看>>
Network Monitoring in Software-Defined Networking :A Review(综述)
查看>>
libtiff4.04
查看>>
CentOS 7 下使用 Firewall
查看>>
软件设计原则与模式
查看>>
[微信小程序] 认识微信小程序及开发环境搭建
查看>>