server.port=5000 management.endpoints.web.exposure.include=health,metrics,prometheus management.endpoint.health.show-details=always management.health.defaults.enabled=true management.endpoint.health.probes.enabled=true spring.jpa.open-in-view=false spring.h2.console.enabled=true spring.datasource.url=jdbc:h2:mem:school spring.datasource.driverClassName=org.h2.Driver spring.datasource.username=sa spring.jpa.database-platform=org.hibernate.dialect.H2Dialect # showing SQL is generally good practice for running project locally to check whether there is not an issue with implementation of JPA methods. spring.jpa.show-sql=true spring.jackson.property-naming-strategy=LOWER_CAMEL_CASE spring.cache.type=NONE appconfig.enablecache=false