Tagged articles

RequestMapping

10 articles · Page 1 of 1
Selected Java Interview Questions
Selected Java Interview Questions
Aug 14, 2025 · Backend Development

Master Spring MVC Controllers: From @Controller Basics to Advanced Techniques

This guide walks through creating Spring MVC controllers using @Controller, implementing the Controller interface, extending AbstractController, mapping URLs and HTTP methods, handling request parameters, returning ModelAndView, performing redirects, processing forms, uploading files, autowiring services, and adhering to the single‑responsibility principle.

ControllerModelAndViewRequestMapping
0 likes · 14 min read
Master Spring MVC Controllers: From @Controller Basics to Advanced Techniques
Java Architect Essentials
Java Architect Essentials
Apr 30, 2025 · Backend Development

Simplifying SpringBoot Routing with @RequestMapping and Its Derived Annotations

This article explains how SpringBoot's @RequestMapping and its derived annotations like @GetMapping, @PostMapping, @PutMapping, and @DeleteMapping can reduce repetitive routing code, improve readability, and accelerate development of RESTful APIs, illustrated with practical code examples and best‑practice tips.

GetMappingPostMappingRequestMapping
0 likes · 6 min read
Simplifying SpringBoot Routing with @RequestMapping and Its Derived Annotations
Java Backend Technology
Java Backend Technology
Mar 19, 2020 · Backend Development

14 Essential Tips for Writing Spring MVC Controllers

This article presents fourteen practical techniques for building Spring MVC controllers, covering annotation usage, interface implementation, abstract class extension, URL mapping, HTTP method specification, request parameter binding, model handling, redirects, form processing, file uploads, dependency injection, servlet access, and single‑responsibility design.

ControllerModelAndViewRequestMapping
0 likes · 16 min read
14 Essential Tips for Writing Spring MVC Controllers
Programmer DD
Programmer DD
Feb 13, 2020 · Backend Development

How to Restore Spring Boot 2.1.x Request Mapping Logs with TRACE Level

This article explains why Spring Boot 2.1.x stopped printing HTTP request mappings, shows that the log level was changed from INFO to TRACE, and provides the exact configuration needed to re‑enable detailed endpoint logs during application startup.

RequestMappingSpring BootTrace
0 likes · 8 min read
How to Restore Spring Boot 2.1.x Request Mapping Logs with TRACE Level