How to keep database content between consecutive runs of a Google App Engine app?
Advertisements I have a Java / Spring app running on the standard environment. Every time I deploy it to App Engine, the postgres database I’m using is reset. How to prevent that? My application.properties: spring.datasource.url=jdbc:postgresql:///*** spring.jpa.properties.hibernate.id.new_generator_mappings=false spring.jpa.properties.hibernate.format_sql=true spring.jpa.hibernate.ddl-auto=create logging.level.org.hibernate.SQL=DEBUG logging.level.org.hibernate.type.descriptor.sql.BasicBinder=TRACE My app.yaml: runtime: java17 instance_class: F1 automatic_scaling: max_idle_instances: 1 >Solution : You just need to… Read More How to keep database content between consecutive runs of a Google App Engine app?