Spring Boot Custom 404 Response - Spring-boot Typing CST Test
Loading…
Spring Boot Custom 404 Response — Spring-boot Code
Custom error handling for 404 requests.
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.http.HttpStatus;
import org.springframework.web.bind.annotation.*;
import org.springframework.web.servlet.NoHandlerFoundException;
@SpringBootApplication
public class ErrorApplication {
public static void main(String[] args) {
SpringApplication.run(ErrorApplication.class, args);
}
}
@RestController
@ControllerAdvice
class ErrorController {
@ExceptionHandler(NoHandlerFoundException.class)
@ResponseStatus(HttpStatus.NOT_FOUND)
public String handle404() {
return "Custom 404 Not Found";
}
}Spring-boot Language Guide
Spring Boot is a Java-based framework that simplifies building production-ready Spring applications. It provides convention-over-configuration, embedded servers, and production-grade features for microservices and web applications.
Primary Use Cases
- ▸RESTful API development
- ▸Microservices architecture
- ▸Enterprise backend systems
- ▸Web applications with Spring MVC
- ▸Integration with databases and messaging systems
Notable Features
- ▸Embedded web servers for standalone deployment
- ▸Auto-configuration to reduce boilerplate
- ▸Production-ready metrics, health checks, and logging
- ▸Spring ecosystem integration (Security, Data, Batch)
- ▸Opinionated defaults with override options
Origin & Creator
Spring Boot was created by Pivotal Software (now part of VMware) in 2014 to simplify Spring framework development and deployment.
Industrial Note
Spring Boot is preferred in enterprise, cloud-native, and microservices applications where scalability, maintainability, and rapid development are critical.