27 lines
590 B
YAML
27 lines
590 B
YAML
# ===== 개발 환경 =====
|
|
spring:
|
|
datasource:
|
|
driver-class-name: org.mariadb.jdbc.Driver
|
|
url: jdbc:mariadb://localhost:3306/owrawww?useUnicode=true&characterEncoding=UTF-8&serverTimezone=Asia/Seoul
|
|
username: owrawww
|
|
password: owrawww
|
|
|
|
thymeleaf:
|
|
cache: false # 개발 중 템플릿 즉시 반영
|
|
|
|
mybatis:
|
|
configuration:
|
|
log-impl: org.apache.ibatis.logging.stdout.StdOutImpl # SQL 콘솔 출력
|
|
|
|
server:
|
|
port: 8080
|
|
|
|
logging:
|
|
level:
|
|
com.owrawww: DEBUG
|
|
org.springframework.security: DEBUG
|
|
|
|
app:
|
|
upload:
|
|
path: D:\home\www\owrainfo\uploads
|