اكثر اسئلة واجوبة المقابلات طلبا والاختبارات عبر الإنترنت
منصة تعليمية للتحضير للمقابلات والاختبارات عبر الإنترنت والدروس والتدريب المباشر

طوّر مهاراتك من خلال مسارات تعلم مركزة واختبارات تجريبية ومحتوى جاهز للمقابلات.

يجمع WithoutBook أسئلة المقابلات حسب الموضوع والاختبارات العملية عبر الإنترنت والدروس وأدلة المقارنة في مساحة تعلم متجاوبة واحدة.

التحضير للمقابلة

الاختبارات التجريبية

اجعلها الصفحة الرئيسية

احفظ هذه الصفحة في المفضلة

الاشتراك عبر البريد الإلكتروني

Spring Boot اسئلة واجوبة المقابلات

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

فروقات ذات صلة

سؤال 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

هل هذا مفيد؟ اضف تعليقا عرض التعليقات
 

سؤال 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.

هل هذا مفيد؟ اضف تعليقا عرض التعليقات
 

سؤال 18. How to enable HTTP/2 supports in Spring Boot?

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

هل هذا مفيد؟ اضف تعليقا عرض التعليقات
 

سؤال 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>

هل هذا مفيد؟ اضف تعليقا عرض التعليقات
 

سؤال 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;

هل هذا مفيد؟ اضف تعليقا عرض التعليقات
 

الاكثر فائدة حسب تقييم المستخدمين:

حقوق النشر © 2026، WithoutBook.
Spring vs Spring BootNodeJS vs Spring BootSpring MVC vs Spring Boot