Index: Prototype Application/Paw5/pom.xml
===================================================================
--- Prototype Application/Paw5/pom.xml	(revision 4cc22f90d171759f4359813f978473f4c4bb1a3d)
+++ Prototype Application/Paw5/pom.xml	(revision c482a3da0654d126606025577ce1061b3a4dc1d6)
@@ -37,4 +37,17 @@
             <scope>test</scope>
         </dependency>
+        <dependency>
+            <groupId>org.springframework.boot</groupId>
+            <artifactId>spring-boot-starter-data-jpa</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>org.postgresql</groupId>
+            <artifactId>postgresql</artifactId>
+            <scope>runtime</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.springframework.boot</groupId>
+            <artifactId>spring-boot-starter-jdbc</artifactId>
+        </dependency>
     </dependencies>
 
Index: Prototype Application/Paw5/src/main/resources/application.properties
===================================================================
--- Prototype Application/Paw5/src/main/resources/application.properties	(revision 4cc22f90d171759f4359813f978473f4c4bb1a3d)
+++ Prototype Application/Paw5/src/main/resources/application.properties	(revision c482a3da0654d126606025577ce1061b3a4dc1d6)
@@ -1,1 +1,12 @@
+spring.datasource.url=jdbc:postgresql://localhost:9999/db_202223z_va_prj_paw5
+spring.datasource.username=db_202223z_va_prj_paw5_owner
+spring.datasource.password=b53473cba3b3
 
+spring.datasource.hikari.connectionTimeout=20000
+spring.datasource.hikari.maximumPoolSize=5
+
+spring.jpa.properties.hibernate.dialect=org.hibernate.dialect.PostgreSQL95Dialect
+spring.jpa.properties.hibernate.jdbc.lob.non_contextual_creation=true
+
+spring.jpa.hibernate.ddl-auto=update
+spring.jpa.show-sql=true
