Tagged articles
4 articles
Page 1 of 1
Java Architect Essentials
Java Architect Essentials
May 2, 2025 · Backend Development

Simplifying Request Parameter Binding in SpringBoot with @RequestParam

This article explains how the @RequestParam annotation in SpringBoot automatically binds request parameters—whether from forms, query strings, or URLs—to controller method arguments, reducing boilerplate code, improving readability, and enhancing development efficiency, with practical code examples and advanced usage tips.

JavaParameterBindingRequestParam
0 likes · 8 min read
Simplifying Request Parameter Binding in SpringBoot with @RequestParam
Java Architect Essentials
Java Architect Essentials
Jun 24, 2022 · Backend Development

Make a Spring MVC Endpoint Accept JSON, Form and Multipart in One Call

This article explains how to redesign a Spring MVC controller so that a single endpoint can seamlessly handle JSON payloads, URL‑encoded form data, and multipart file uploads by creating a custom annotation, resolver, and Spring configuration, avoiding the pitfalls of manual HttpServletRequest parsing.

@RequestBodyContent-TypeCustom Annotation
0 likes · 7 min read
Make a Spring MVC Endpoint Accept JSON, Form and Multipart in One Call