jpa.hibernate.ddl-auto配置属性说明

jpa.hibernate.ddl-auto配置属性说明none: Disable DDl handling (禁用ddl,不做任何操作)
create: Create the schema and destroy previous data (创建架构并销毁先前的数据)-建表,有数据清空表
create-drop: Create and then destroy the schema at the end of the session (在会话结束时创建然后销毁架构)–程序结束清空表
update: Update the schema if necessary (必要时更新架构 )–只更新表结构,不更新数据
validate: Validate the schema, make no changes to the database (验证架构,不对数据库进行任何更改)–验证错误会报错