Certification/Spring(2V0-72.22, SCP)

What is Spring Boot?

엘호리스 2021. 11. 7. 12:47

What is Spring Boot?


  • Spring Boot is a tool that makes developing web application and microservices with Spring Framework faster and easier through three core capabilities:
    1. Autoconfiguration
    2. An opinionated approach to configuration
    3. The ability to create standalone applications

These features work together to provide you with a tool that allows you to set up a Spring-based application with minimal configuration and setup.

https://www.ibm.com/cloud/learn/java-spring-boot

  • Spring Boot는 다음 세 가지 핵심 기능을 통해 Spring Framework로 웹 어플리케이션 및 마이크로서비스를 더 빠르고 쉽게 개발할 수 있는 도구입니다.
    1. 자동 설정
    2. 설정에 대해 제약적인 접근방식
      • Opinionated Defaults Configuration의 대표적인 프로젝트로 Spring Boot Starter가 있다.
      • Spring Boot Starter 라이브러리를 추가하면 데이터베이스, 데이터소스 및 최대 절전 모드 엔터티 관리자가 자동 구성된다.
      • 기본 구성 설정에서 사용자가 원하면 재정의 할 수 있다
    3. 독립 실행형 어플리케이션을 만드는 기능

이러한 기능들은 함께 작동하여 최소한의 구성 및 설정으로 Spring 기반 어플리케이션을 설정할 수 있는 도구를 제공합니다.