<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-data-jpa</artifactId> </dependency> <dependency> <groupId>mysql</groupId> <artifactId>mysql-connector-java</artifactId> <scope>runtime</scope> </dependency>
show_sql: true 在控制台显示jpa生成的sql format_sql: true 控制台显示生成的sql的时候进行格式化 ddl-auto: update 这种配置方式意思是没有表的时候新建表,有表的话就不会删除再新建,字段有更新的时候会自动更新表结构
实体创建
服务启动
可以看到咋子控台已经打印出建表的sql语句了
虽然这种自动建表的方式很方便,但是不建议在项目中使用这种方式还是要慎重,最好自己手写sql去建表。
欢迎大家去 我的博客 瞅瞅,里面有更多关于测试实战的内容哦!!