45 lines
1.2 KiB
YAML
45 lines
1.2 KiB
YAML
# Service port
|
|
server:
|
|
port: 11010
|
|
|
|
# JPA 설정, JSP 설정
|
|
spring:
|
|
devtools:
|
|
livereload:
|
|
enabled: true
|
|
# 인증서버에서 JWT 보안키 확인
|
|
security:
|
|
oauth2:
|
|
resourceserver:
|
|
jwt:
|
|
jwk-set-uri:
|
|
http://localhost:11000/oauth/token_key
|
|
|
|
# Primary db information
|
|
primarydb:
|
|
driverClassName: net.sf.log4jdbc.sql.jdbcapi.DriverSpy
|
|
jdbcUrl: jdbc:log4jdbc:mariadb://192.168.8.131:3306/ur_itms_db?characterEncoding=UTF-8&serverTimezone=Asia/Seoul&rewriteBatchedStatements=true
|
|
username: g9IwFesTyIloXVpUnfOX0g==
|
|
password: E4SOtjDqqO79BQERc/eaTw==
|
|
maximumPoolSize: 35
|
|
minimumIdle: 2
|
|
connectionTimeout: 3000
|
|
idleTimeout: 300000
|
|
testOnBorrow: true
|
|
validationQuery: SELECT 1
|
|
|
|
# SQL Log 관련 setting
|
|
log4jdbc:
|
|
spylogdelegator:
|
|
name: net.sf.log4jdbc.log.slf4j.Slf4jSpyLogDelegator
|
|
dump:
|
|
sql:
|
|
maxlinelength: 0
|
|
|
|
logging.level.jdbc.sqlonly: info
|
|
logging.level.jdbc.sqltiming: false
|
|
logging.level.jdbc.audit: false
|
|
logging.level.jdbc.resultset: false
|
|
logging.level.jdbc.resultsettable: info
|
|
logging.level.jdbc.connection: false
|