summaryrefslogtreecommitdiffstats
path: root/src/main/resources
diff options
context:
space:
mode:
authorputhuparambil.aditya <aditya.puthuparambil@bell.ca>2021-05-06 16:12:44 +0100
committerputhuparambil.aditya <aditya.puthuparambil@bell.ca>2021-05-13 11:20:07 +0100
commitd31d8e1cc167abf7835a1771b5ddc8d78aba9ac6 (patch)
tree056a897594706613f71316e87075a93c7d9d6ab7 /src/main/resources
parent26af9368115f5f7296aa4123f38b4e1c81a40b8d (diff)
Implement service and repository layers for storing temporal data
1. Basic structure created 2. Basic tests added 3. lombok.config included for coverage Issue-ID: CPS-194 Signed-off-by: puthuparambil.aditya <aditya.puthuparambil@bell.ca> Change-Id: Icf23c2e647106f7985dff14d9901806f7c4aa55a
Diffstat (limited to 'src/main/resources')
-rwxr-xr-xsrc/main/resources/application.yml12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/main/resources/application.yml b/src/main/resources/application.yml
index ff70e46..d4c799c 100755
--- a/src/main/resources/application.yml
+++ b/src/main/resources/application.yml
@@ -15,6 +15,9 @@
# limitations under the License.
# ============LICENSE_END=========================================================
+server:
+ port: 8080
+
spring:
datasource:
url: jdbc:postgresql://${DB_HOST}:${DB_PORT}/cpstemporaldb
@@ -22,3 +25,12 @@ spring:
password: ${DB_PASSWORD}
liquibase:
change-log: classpath:/db/changelog/changelog-master.xml
+ jpa:
+ properties:
+ hibernate:
+ dialect: org.hibernate.dialect.PostgreSQLDialect
+
+logging:
+ level:
+ org:
+ springframework: INFO