WEB

application.properties 설정

PSAwesome 2020. 2. 3. 20:59
반응형
# 로깅 설정 파일의 위치
logging.config=

# 로깅 파일 이름
logging.file=

# 로깅 레벨 *은 package 명이 될 수 있다.
logging.level.*=


# 에러 컨트롤러의 경로
server.error.path=/error

 

# 기본 인증 사용으로 true 설정
security.basic.enabled=true


# 보안 적용 uri
security.basic.path=/**


# 보안 제외 uri
security.ignored=/login,/index,/main


# 스프링 시큐리티 기본 사용자
security.user.name=user


# 기본 패스워드
security.user.password=


# role
security.user.role=USER

 

# JDBC Driver 설정
spring.datasource.driver-class-name=

# 스키마 초기화
spring.jpa.generate-ddl=

# JPA Query 로그 확인
spring.jpa.properties.hibernate.show_sql=true
spring.jpa.properties.hibernate.format_sql=true
spring.jpa.properties.hibernate.use_sql_comments=true

 

# HTTP MessageConverter
spring.http.converters.preferred-json-mapper=jackson

# Jackson 날짜 형식
spring.jacson.date-format=yyyy-MM-dd HH:mm:ss
반응형