配置文件
#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
com.h2database h2 runtime
H2数据库介绍
常用的开源数据库:H2,Derby,HSQLDB,MySQL,PostgreSQL。其中H2,HSQLDB类似,十分适合作为嵌入式数据库使用,其它的数据库大部分都需要安装独立的客户端和服务器端。
H2的优势:1、h2采用纯Java编写,因此不受平台的限制。2、h2只有一个jar文件,十分适合作为嵌入式数据库试用。3、性能和功能的优势H2比HSQLDB的最大的优势就是h2提供了一个十分方便的web控制台用于操作和管理数据库内容,这点比起HSQLDB的swing和awt控制台实在好用多了。