최초 세팅
This commit is contained in:
58
src/main/resources/application.yml
Normal file
58
src/main/resources/application.yml
Normal file
@@ -0,0 +1,58 @@
|
||||
spring:
|
||||
profiles:
|
||||
active: local
|
||||
encoding: UTF-8
|
||||
|
||||
thymeleaf:
|
||||
prefix: classpath:templates/
|
||||
suffix: .html
|
||||
check-template-location: true
|
||||
|
||||
servlet:
|
||||
multipart:
|
||||
maxFileSize: 500MB
|
||||
maxRequestSize: 500MB
|
||||
|
||||
aop:
|
||||
proxy-target-class: false
|
||||
|
||||
mybatis:
|
||||
mapper-locations: mybatis/mappers/*.xml
|
||||
configuration:
|
||||
map-underscore-to-camel-case: true
|
||||
|
||||
server:
|
||||
encoding:
|
||||
charset: UTF-8
|
||||
enabled: true
|
||||
force: true
|
||||
force-response: true # 응답 인코딩 강제 설정[3]
|
||||
compression:
|
||||
enabled: true
|
||||
server-header: server
|
||||
error:
|
||||
whitelabel:
|
||||
enabled: false
|
||||
path: /error/errorIntro.do
|
||||
|
||||
logging:
|
||||
level:
|
||||
root: INFO
|
||||
com.madeu: DEBUG
|
||||
org.apache: WARN
|
||||
org.apache.juli: WARN
|
||||
org.apache.catalina: WARN
|
||||
org.apache.tomcat: WARN
|
||||
org.springframework.web: INFO
|
||||
org.springframework.boot: INFO
|
||||
org.hibernate.SQL: DEBUG
|
||||
org.hibernate.type.descriptor.sql.BasicBinder: TRACE
|
||||
p6spy: debug
|
||||
|
||||
decorator:
|
||||
datasource:
|
||||
p6spy:
|
||||
enable-logging: true
|
||||
logging: slf4j
|
||||
tracing:
|
||||
include-parameter-values: true
|
||||
Reference in New Issue
Block a user