spring-crash-course/src/main/resources/application.properties
Okechi Onyeje 4fa547a09d - went over PUT, POST, and DELETE mappings
- went over using the RequestBody and RequestParams in RestControllers
- went over writing business logic in Service Layer classes
2023-10-31 09:23:24 -04:00

8 lines
327 B
INI

spring.datasource.url=jdbc:postgresql://localhost:3636/student
spring.datasource.username=okechi
spring.datasource.password=testing
spring.jpa.hibernate.ddl-auto=create-drop
spring.jpa.show-sql=true
spring.jpa.properties.hibernate.dialect=org.hibernate.dialect.PostgreSQLDialect
spring.jpa.properties.hibernate.format_sql=true