logging
- debug
- trace
- logging.level.pakage 명 : 로그 단계 설정
logging.level.com.example.Get_In_Line=debug
# api 호출 과정을 로그로 관찰
logging.level.org.springframework.web=debug
config
- spring.config.activate.on-profile
- 그룹프로파일(spring.profiles.group.{group-name})을 선언하면 내가 의도했던 대로 속성값을 덮어쓴다.
- spring.config.import
- Spring Boot의 외부에 있는 프로퍼티(Property) 컨피그 파일을 적용
main
- spring.main.banner-mode
- banner 표시 설정
- spring.main.lazy-initialization
- 빈의 인스턴스화를 미룬다.
web
• spring.hateoas.use-hal-as-default-json-media-type
• spring.mvc.converters.preferred-json-mapper
• spring.mvc.format.date
• spring.mvc.format.date-time
• spring.mvc.format.time
• spring.mvc.view.prefix
• spring.mvc.view.suffix
server
• server.error.whitelabel.enabled : 기본 에러 페이지 설정
• server.port : 포트 설
'개발 > Spring' 카테고리의 다른 글
타임리프(thymeleaf) (0) | 2024.02.20 |
---|---|
비즈니스 로직 테스트 (0) | 2024.02.20 |
오류 처리 (0) | 2024.02.19 |
Validation (0) | 2024.02.19 |
MVC 패턴(3) - 비즈니스 로직 구현 (0) | 2024.02.19 |