我正在学习Spring Boot,并创建了一个简单的应用程序,在该应用程序中我连接到了PostgreSQL数据库,并且执行了简单的插入/更新/删除操作。一切正常,但是如果停止应用程序,我添加到数据库的行将不会保留在数据库中。我必须在某处指定一种提交吗?
这是application.properties
文件:
spring.jpa.database=POSTGRESQL
spring.datasource.platform=postgres
spring.datasource.url=jdbc:postgresql://localhost:5432/testdb
spring.datasource.username=postgres
spring.datasource.password=*pass*
spring.jpa.generate-ddl=true
spring.jpa.hibernate.ddl-auto=create