spring:
application:
name: demo-application
profiles:
active: dev
boot:
admin:
client:
url: http://localhost:8080
cloud:
config:
discovery:
enabled: true
service-id: configserver
uri: http://localhost:8888
eureka:
instance:
prefer-ip-address: true
client:
service-url:
defaultZone: http://localhost:8761/eureka
server:
port: 8080
logging:
level:
org.springframework: error
com.netflix: error
spring:
datasource:
driver-class-name: oracle.jdbc.OracleDriver
url: jdbc:oracle:thin:@localhost:1521:demo
username: demo
password: demo
hikari:
connection-test-query: select * from dual
jpa:
generate-ddl: true
show-sql: true
hystrix:
command:
default:
execution:
isolation:
thread:
timeoutInMilliseconds: 5000