가장 많이 묻는 면접 질문과 답변 & 온라인 테스트
면접 준비, 온라인 테스트, 튜토리얼, 라이브 연습을 위한 학습 플랫폼

집중 학습 경로, 모의고사, 면접 준비 콘텐츠로 실력을 키우세요.

WithoutBook은 주제별 면접 질문, 온라인 연습 테스트, 튜토리얼, 비교 가이드를 하나의 반응형 학습 공간으로 제공합니다.

Prepare Interview

모의 시험

홈페이지로 설정

이 페이지 북마크

이메일 주소 구독

Spring Boot 면접 질문과 답변

Test your skills through the online practice test: Spring Boot Quiz Online Practice Test

관련 차이점

Ques 16. How are properties defined in Spring Boot and where?

You can define properties in the application.properties file exists in the classpath.
Example: configure default DataSource bean
database.host=localhost

도움이 되었나요? Add Comment View Comments
 

Ques 17. What is spring-boot-starter-parent?

It is a special starter which makes Gradle or Maven dependency-management easy by adding jars to your classpath.

도움이 되었나요? Add Comment View Comments
 

Ques 18. How to enable HTTP/2 supports in Spring Boot?

User can enable HTTP/2 support by using server.http2.enabled configuration property. 

도움이 되었나요? Add Comment View Comments
 

Ques 19. What is a Spring Boot Actuator?

Spring Boot Actuator allows you to monitor and manage your application when you want to push it for the production. It helps you to control your application by using HTTP endpoints.

<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-actuator</artifactId>
</dependency>

도움이 되었나요? Add Comment View Comments
 

Ques 20. How can you access a value defined in the application? What is properties file in Spring Boot?

Use the @Value annotation to access the properties which is defined in the application.properties file.
@Value(”${custom.value}”)
private String customVal;

도움이 되었나요? Add Comment View Comments
 

Most helpful rated by users:

Copyright © 2026, WithoutBook.
Spring vs Spring BootNodeJS vs Spring BootSpring MVC vs Spring Boot