-
Notifications
You must be signed in to change notification settings - Fork 0
/
RESULTS-SERVICE-dev.properties
29 lines (24 loc) · 1.03 KB
/
RESULTS-SERVICE-dev.properties
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# DEVELOPMENT PROFILE
server.port= 8081
### Postgresql database properties
# Database configuration
spring.datasource.url=jdbc:postgresql://localhost:5432/result_balance_db
spring.datasource.username=springboot
spring.datasource.password= {cipher}ec7975f9b78e7a0c697c7dd3341d61cbb7e471d82d09525b7a9b21bd453836f0
spring.datasource.driver-class-name=org.postgresql.Driver
spring.datasource.testWhileIdle = true
spring.datasource.validationQuery = SELECT 1
#JPA properties
spring.jpa.show-sql= true
spring.jpa.open-in-view=false
spring.jpa.hibernate.ddl-auto=none
spring.jpa.properties.hibernate.dialect=org.hibernate.dialect.PostgreSQLDialect
spring.jpa.hibernate.naming-strategy = org.hibernate.cfg.ImprovedNamingStrategy
#### Actuator Properties
management.endpoints.web.exposure.include=*
management.endpoints.enabled-by-default=true
#### Eureka service properties
eureka.instance.preferIpAddress = true
eureka.client.registerWithEureka = true
eureka.client.fetchRegistry = true
eureka.client.serviceUrl.defaultZone = http://localhost:8069/eureka/