SpringBoot + H2 内存数据库的使用
·
pom.xml
<dependency>
<groupId>com.h2database</groupId>
<artifactId>h2</artifactId>
</dependency>
<!-- h2的控制台需要用到web -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
yml
spring:
#任意ROM框架
jpa:
show-sql: true
h2:
console: #开启控制台
enabled: true
path: /h2
然后启动

可以看到SpringBoot自动配置
数据库的连接是"jdbc:h2:mem:0900bc9a-962c-4140-99b3-74034d196632"
然后访问页面 http://127.0.0.1:8080/h2


DAMO开发者矩阵,由阿里巴巴达摩院和中国互联网协会联合发起,致力于探讨最前沿的技术趋势与应用成果,搭建高质量的交流与分享平台,推动技术创新与产业应用链接,围绕“人工智能与新型计算”构建开放共享的开发者生态。
更多推荐


所有评论(0)