diff --git a/pom.xml b/pom.xml index fe11f31..7eefe90 100644 --- a/pom.xml +++ b/pom.xml @@ -44,6 +44,17 @@ spring-boot-starter-web + + org.springframework.boot + spring-boot-starter-data-jpa + + + + org.postgresql + postgresql + runtime + + org.springframework.boot spring-boot-starter-validation diff --git a/src/main/resources/application.yaml b/src/main/resources/application.yaml index 245df85..6cd7770 100644 --- a/src/main/resources/application.yaml +++ b/src/main/resources/application.yaml @@ -1,3 +1,12 @@ spring: application: - name: Vacancy Management - API \ No newline at end of file + name: Vacancy Management - API + + datasource: + driver-class-name: org.postgresql.Driver + url: jdbc:postgresql://localhost:5432/vacancy_management + username: admin + password: admin + + jpa: + open-in-view: off \ No newline at end of file