2022년 04월 22일 TIL

yshjft·2022년 4월 22일
0

데브코스 TIL

목록 보기
25/45

@SpringBootApplication

  • 내장 tomcat(embeded tomcat) 실행 → applicationContext 실행

Auto Configuration

  • Auto Configuration(Spring Boot 기능) 덕분에 굉장히 편리해졌다.

    • 필요하지 않은 자동 설정의 경우 exclude할 수 있다.
    • @Conditional을 이용하여 조건(특정 Class OR Bean OR 의존성이 있는 경우)에 따른 자동 설정 가능
      @ConditionalOnClass : 특정 Class 파일이 존재하면 Bean을 등록
      @ConditionalOnBean : 특정 Bean 이 존재하면 Bean을 등록
  • application.yml에서 Spring 관련 설정을 할 수 있다.

    • Spring의 connection pool은 Hikari CP이다.
    • servletContext name을 지정할 수 있다.
    server:
     servlet:
      context-path: /kdt
    • port 번호를 바꿀 수 있다.
    server
     port: 8081
    • 로깅 레벨을 설정할 수 있다.
    logging:
     level:
      org:
        springframework: DEBUG
profile
꾸준히 나아가자 🐢

0개의 댓글