[Spring] 라이브러리 살펴보기

.·2022년 8월 9일
0

인프런의 스프링 입문 - 코드로 배우는 스프링 부트, 웹 MVC, DB 접근 기술를 듣고 정리한 게시글입니다.


라이브러리 살펴보기

  • Gradle은 의존관계가 있는 라이브러리를 함께 다운로드 한다.

스프링 부트 라이브러리

  • spring-boot-starter-web
    • spring-boot-starter-tomcat: tomcat(웹서버)
    • spring-webmvc: 스프링 웹 MVC
  • spring-boot-starter-thymeleaf: tymeleaf templet 엔진(View)
  • spring-boot-starter(공통): 스프링 부트 + 스프링 코어 + 로깅
    • spring-boot
      - spring-core
    • spring-boot-starter-logging
      - logback, slf4j

Test Library

  • spring-boot-starter-test
    • junit: test framework
    • mockito: 목 라이브러리
    • assertj: test code를 좀 더 편하게 작성할 수 있도록 도와주는 라이브러리
    • spring-test: 스프링 통합 test 지원

0개의 댓글