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:
- Autoconfiguration
- An opinionated approach to configuration
- 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.
- Spring Boot는 다음 세 가지 핵심 기능을 통해 Spring Framework로 웹 어플리케이션 및 마이크로서비스를 더 빠르고 쉽게 개발할 수 있는 도구입니다.
- 자동 설정
- 설정에 대해 제약적인 접근방식
- Opinionated Defaults Configuration의 대표적인 프로젝트로 Spring Boot Starter가 있다.
- Spring Boot Starter 라이브러리를 추가하면 데이터베이스, 데이터소스 및 최대 절전 모드 엔터티 관리자가 자동 구성된다.
- 기본 구성 설정에서 사용자가 원하면 재정의 할 수 있다
- 독립 실행형 어플리케이션을 만드는 기능
이러한 기능들은 함께 작동하여 최소한의 구성 및 설정으로 Spring 기반 어플리케이션을 설정할 수 있는 도구를 제공합니다.
'Certification > Spring(2V0-72.22, SCP)' 카테고리의 다른 글
What are the advantages of using Spring Boot? (0) | 2021.11.08 |
---|---|
How do you configure a DataSource in Spring? (0) | 2021.11.07 |
What is the difference between checked and unchecked exceptions? (0) | 2021.11.07 |
What is the concept of AOP? Which problem does it solve? What is a cross cutting concern? (0) | 2021.11.06 |
What is dependency injection and what are the advantages of using it? (0) | 2021.11.03 |