Files
spring-jwt/store-service/src/main/resources/application.yml

53 lines
1009 B
YAML

server:
port: 0
spring:
application:
name: store-service
config:
import: optional:configserver:http://127.0.0.1:8888
cloud:
config:
name: service
jpa:
hibernate:
ddl-auto: create-drop
generate-ddl: true
open-in-view: false
properties:
hibernate:
default_batch_fetch_size: 1000
defer-datasource-initialization: true
datasource:
driver-class-name: org.postgresql.Driver
url: jdbc:postgresql://localhost:5432/storedb
username: postgres
password: admin
# sql:
# init:
# data-locations: classpath:data/data.sql
# mode: always
eureka:
client:
service-url:
defalutZone: http://localhost:8761/eureka
fetch-registry: true
register-with-eureka: true
instance:
instance-id: ${spring.application.name}:${spring.application.instance_id:${random.value}}
logging:
level:
com.justpickup: DEBUG
# jpa query, parameter 로그 (p6spy)
decorator.datasource.p6spy:
enable-logging: true