Prev Next

Spring / Spring7 basics Interview questions

What is the purpose of ResponseEntity?

ResponseEntity<T> represents a complete HTTP response - status code, headers, and body - giving a controller method full control over what's sent back, rather than just returning a body and letting Spring pick a default 200 OK status.

@GetMapping("/{id}")
public ResponseEntity<Product> getProduct(@PathVariable Long id) {
    Product product = productService.findById(id);
    if (product == null) {
        return ResponseEntity.notFound().build();
    }
    return ResponseEntity.ok(product);
}

This is especially useful for returning 404 Not Found, 201 Created with a Location header after a POST, or custom headers like caching directives. Returning a plain Product object instead always yields 200 OK, so ResponseEntity is the standard tool whenever the status code itself needs to vary.

What three things does ResponseEntity let a controller fully control?
If a method returns a plain Product object instead of ResponseEntity, what status code is always used?

Invest now in Acorns!!! 🚀 Join Acorns and get your $5 bonus!
Acorns Logo

Invest now in Acorns!!! 🚀
Join Acorns and get your $5 bonus!

Earn passively and while sleeping

Acorns is a micro-investing app that automatically invests your "spare change" from daily purchases into diversified, expert-built portfolios of ETFs. It is designed for beginners, allowing you to start investing with as little as $5. The service automates saving and investing. Disclosure: I may receive a referral bonus.

Robinhood Logo

Invest now!!! Get Free equity stock (US, UK only)!

Use Robinhood app to invest in stocks. It is safe and secure. Use the Referral link to claim your free stock when you sign up!.

The Robinhood app makes it easy to trade stocks, crypto and more.


Webull Logo

Webull! Receive free stock by signing up using the link: Webull signup.

More Related questions...

What is Spring Framework 7? What is the minimum Java version required by Spring Framework 7? What is Jakarta EE 11 support in Spring Framework 7? What is Inversion of Control in Spring? What is Dependency Injection in Spring? What are the types of Dependency Injection in Spring? What is an ApplicationContext? What is a BeanFactory in Spring? What are Spring beans? What are the types of bean scopes in Spring? What is the purpose of the @Component annotation? What is the purpose of the @Autowired annotation? What is the purpose of the @Configuration annotation? What is the purpose of the @Bean annotation? What are stereotype annotations in Spring? What is component scanning in Spring? What is the BeanRegistrar contract introduced in Spring Framework 7? What is JSpecify in Spring Framework 7? What is the purpose of the @Value annotation? What are Spring profiles? Define a Spring Boot starter? What is auto-configuration in Spring Boot 4? What is the DispatcherServlet in Spring MVC? What is a RestController in Spring MVC? What is API Versioning support in Spring Framework 7? What are the types of HTTP message converters in Spring? Describe the RestClient in Spring Framework 7? What is the purpose of HTTP Interface clients in Spring? What are the types of Spring AOP advice? Define an Aspect in Spring AOP? What is the purpose of the @Transactional annotation? What are the types of transaction propagation in Spring? Describe AOT processing in Spring Framework 7? What is GraalVM native image support in Spring Framework 7? What is virtual thread support in Spring Framework 7? What is the purpose of a PropertySource in Spring? List the core modules of Spring Framework 7? Define a Spring MVC ViewResolver? What is the purpose of ResponseEntity? Describe the Spring Bean lifecycle basics?
Show more question and Answers...

Spring7 Intermediate to Advanced Interview questions

Comments & Discussions