springboot data JPA 自动建表

配置

pom.xml文件引入依赖:如下图

pom.xml

application.properties配置信息如下图:


application.properties配置信息

实体类User:


user.class

UserJPA 接口:


UserJPA

JPAController 层代码:


JPAController.class

启动程序

启动程序,打开浏览器,在地址栏输入 http://localhost:8080/user/save?name=zhangsan&age=20&address=beijing

运行结果


浏览器运行结果

数据库


你可能感兴趣的:(springboot data JPA 自动建表)