码迷,mamicode.com
首页 > 数据库 > 详细

idea 中 springBoot 集成 h2 轻量级内存数据库

时间:2017-08-03 11:14:32      阅读:500      评论:0      收藏:0      [点我收藏+]

标签:resource   jdb   scope   sql文件   console   org   setting   结构   led   

配置文件

  #h2 数据库配置

#配置数据库连接地址
spring.datasource.url=jdbc:h2:sunniwell:sos
#配置数据库驱动
spring.datasource.driver-class-name=org.h2.Driver
#配置数据库用户名
spring.datasource.username=root
#配置数据库密码
spring.datasource.password=sunniwell
#配置能远程访问
spring.h2.console.settings.web-allow-others=true
#配置访问地址
spring.h2.console.path=/h2-console
#配置项目启动 h2就启动
spring.h2.console.enabled=true
#进行该配置后,每次启动程序,程序都会运行resources/db/schema.sql文件,对数据库的结构进行操作。
#spring.datasource.schema=classpath:db/schema.sql
#进行该配置后,每次启动程序,程序都会运行resources/db/data.sql文件,对数据库的数据操作。
#spring.datasource.data=classpath:db/data.sql

 

 

pom.xml

 

<dependency>
<groupId>com.h2database</groupId>
<artifactId>h2</artifactId>
<scope>runtime</scope>
</dependency>

 

idea 中 springBoot 集成 h2 轻量级内存数据库

标签:resource   jdb   scope   sql文件   console   org   setting   结构   led   

原文地址:http://www.cnblogs.com/forliver/p/7278208.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!