윤개발

스프링 부트 알아보기 본문

백엔드/스프링

스프링 부트 알아보기

DEV_SJ 2019. 10. 15. 01:15

스프링 부트 docs: https://docs.spring.io/spring-boot/docs/2.0.3.RELEASE/reference/htmlsingle/#getting-started-introducing-spring-boot

 

Spring Boot Reference Guide

This section dives into the details of Spring Boot. Here you can learn about the key features that you may want to use and customize. If you have not already done so, you might want to read the "Part II, “Getting Started”" and "Part III, “Using Spr

docs.spring.io

 

Spring Boot makes it easy to create stand-alone  

 

  • 제품수준의 어플리케이션을 빠르고 쉽게 만들수 있다.
  • 가장 널리쓰이는 설정을 설정하지 않아도 기본적으로 제공된다.
  • third-party 라이브러리를 제공해준다.

 

스프링 부트의 목표

  • 모든 Spring 개발에 대해 근본적으로 더 빠르고 광범위하게 접근 가능한 시작 환경을 제공한다..

  • 요구 사항이 기본값에서 바뀌면 쉽게 변경할 수 있다..

  • 내장 된 서버, 보안, 메트릭, 상태 확인 및 외부화 된 구성과 같은 대규모 프로젝트 클래스에 공통적 인 다양한 비 기능적 기능을 제공한다.

  • 코드 생성과 XML 구성에 대한 요구 사항은 전혀 없다.

 

Spring Boot 2.0.3.RELEASE에는 Java 8 또는 9  Spring Framework 5.0.7.RELEASE 이상이 필요하다. 

Maven 3.2+ 및 Gradle 4에 대한 명시 적 빌드 지원이 제공된다.

 

 

Comments