springboot H2数据库持久化配置 数据库

springboot H2数据库持久化配置

每次编一些简单的应用总是要创建表,安装数据库非常繁琐 这里可以通过 H2 数据库的持久化功能来达到和Mysql一样功能,且不需要安装数据库非常便利 spring: datasource: driver-class-name: org.h2.Driver url: jdbc:h2:file:/www/${spring.application.name}/db # Window...
阅读全文
Loading...