2021-02-09

h2数据库:
    内嵌式数据库,纯java编写,高度兼容mysql,作为开发、测试、演示等效果很好,不建议用在生产大数量环境

springboot集成:
    1、 引入 jar包
         
            com.h2database
            h2
            runtime
            1.4.200
        

    2、application.properties配置
        1、#创建表的MySql语句位置
            spring.datasource.schema=classpath:schema.sql
        2、#插入数据的MySql语句的位置
            spring.datasource.data=classpath:data.sql
        3、#remote visit
            spring.h2.console.settings.web-allow-others=true
        4、#console url。Spring启动后,可以访问 http://127.0.0.1:8080/h2-console 查看数据库
            spring.h2.console.path=/h2-console
        5、#指定数据库的种类,这里 file意思是文件型数据库 mem内存
            spring.datasource.url=jdbc:h2:file:~/test
        6、#用户名密码不需要改,都是临时值
            spring.datasource.username=san
            spring.datasource.password=
        7、#指定Driver,有了Driver才能访问数据库
            spring.datasource.driver-class-name=org.h2.Driver

你可能感兴趣的:(数据库,java)