0Pricing
Spring Boot 4 Complete Guide · Урок

Обработка HTTP-запросов и ответов

Научитесь обрабатывать параметры запросов, переменные пути и тела запросов, а также формировать подходящие HTTP-ответы

«Обработка HTTP-запросов и ответов» — бесплатный урок Spring Boot 4 Complete Guide на CoddyKit. Это урок 2 из 4. Ты можешь прочитать весь урок бесплатно ниже — а потом практиковать его прямо в браузере с встроенным редактором кода и ИИ-репетитором 24/7. Это часть пути обучения Spring Boot 4 Complete Guide, и твой прогресс синхронизируется между веб-версией и приложением CoddyKit. Курс Spring Boot 4 Complete Guide содержит 4 уроков всего.

Части этого урока еще не переведены и отображаются на английском.

Requests & Responses

When you interact with a web application, your browser sends an HTTP Request to a server. The server then processes it and sends back an HTTP Response.

In Spring Boot, we write code to listen for these requests, extract information, perform actions, and then craft a suitable response.

Getting Query Params: @RequestParam

Sometimes, extra data is sent in the URL after a ?, like /search?keyword=java. These are query parameters.

Spring Boot uses the @RequestParam annotation to easily extract these values into your method parameters.

Live Demo: @RequestParam

Try running this example. After the app starts, open your browser or a tool like Postman and visit http://localhost:8080/hello?name=Coddy. See what happens!

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.RestController;

@SpringBootApplication
@RestController
public class Main {

  public static void main(String[] args) {
    SpringApplication.run(Main.class, args);
  }

  @GetMapping("/hello")
  public String sayHello(
      @RequestParam(defaultValue = "Guest") String name) {
    return "Hello, " + name + "!";
  }
}

Extracting from Path: @PathVariable

Other times, important data is part of the URL path itself, like /users/123. Here, 123 is an ID.

The @PathVariable annotation lets you capture these dynamic segments from the URL directly into your method parameters.

Live Demo: @PathVariable

Run this app, then visit http://localhost:8080/items/apple or http://localhost:8080/items/banana in your browser.

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.RestController;

@SpringBootApplication
@RestController
public class Main {

  public static void main(String[] args) {
    SpringApplication.run(Main.class, args);
  }

  @GetMapping("/items/{itemName}")
  public String getItemDetails(@PathVariable String itemName) {
    return "You requested item: " + itemName;
  }
}

Query vs. Path: When to Use?

  • @RequestParam: Use for optional filtering, sorting, or pagination (e.g., /products?category=books&page=1).
  • @PathVariable: Use for identifying a specific resource (e.g., /users/{id}, /products/{sku}). It's essential for the resource's identity.

Handling Data Payloads: @RequestBody

For operations like creating or updating resources (POST, PUT requests), clients often send complex data (like JSON or XML) in the request body.

The @RequestBody annotation automatically converts this body content into a Java object for you, thanks to Spring's built-in message converters.

Live Demo: @RequestBody

Run this. Use a tool like Postman to send a POST request to http://localhost:8080/users with a JSON body:

{"id":1, "name":"Coddy"}

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RestController;

@SpringBootApplication
@RestController
public class Main {

  public static void main(String[] args) {
    SpringApplication.run(Main.class, args);
  }

  // Define a simple User class
  public static class User {
    private Long id;
    private String name;

    // Getters and setters for JSON mapping
    public Long getId() { return id; }
    public void setId(Long id) { this.id = id; }
    public String getName() { return name; }
    public void setName(String name) { this.name = name; }
  }

  @PostMapping("/users")
  public String createUser(@RequestBody User user) {
    return "User created: ID=" + user.getId() +
           ", Name=" + user.getName();
  }
}

Custom Responses: ResponseEntity

By default, Spring often returns a String or a Java object, which Spring converts to JSON/XML with a 200 OK status.

For more control, especially over HTTP status codes (like 201 Created, 404 Not Found), use ResponseEntity. It lets you specify the body, status, and headers explicitly.

Quick Check: Request Handling

Consider a Spring Boot REST endpoint designed to fetch a user by their unique ID, like /api/users/5. Which annotation is best suited to extract the 5 from the URL?

Lesson Summary

We've covered how Spring Boot makes handling HTTP requests easy:

  • @RequestParam for query parameters (optional data).
  • @PathVariable for path variables (resource identifiers).
  • @RequestBody for deserializing request body content into Java objects.
  • ResponseEntity for fine-grained control over HTTP responses, including status codes.

Mastering these annotations is key to building robust RESTful APIs!

Часто задаваемые вопросы

Урок «Обработка HTTP-запросов и ответов» бесплатный?

Да — полный текст урока «Обработка HTTP-запросов и ответов» бесплатно доступен здесь в веб-версии. Чтобы практиковать его интерактивно (встроенный редактор кода и ИИ-репетитор 24/7) и разблокировать остальной курс Spring Boot 4 Complete Guide, подпишись на CoddyKit PRO. Курс Spring Boot 4 Complete Guide содержит 4 уроков всего.

Чему я научусь в уроке «Обработка HTTP-запросов и ответов»?

Научитесь обрабатывать параметры запросов, переменные пути и тела запросов, а также формировать подходящие HTTP-ответы Ты практикуешь Spring Boot 4 Complete Guide с помощью реального кода, который запускаешь прямо в браузере, и ИИ-репетитор 24/7 отвечает на твои вопросы во время урока.

Нужен ли мне опыт, чтобы начать Spring Boot 4 Complete Guide?

Предыдущий опыт не требуется. Spring Boot 4 Complete Guide на CoddyKit структурирован для всех уровней — от новичков до продвинутых, поэтому ты можешь начать отсюда или с самого начала и учиться в своем темпе. Это урок 2 из 4.

Сколько времени занимает урок «Обработка HTTP-запросов и ответов»?

Большинство уроков CoddyKit занимают около 5–10 минут. Каждый из них компактный и интерактивный, поэтому ты постоянно делаешь прогресс и продолжаешь с того же места в веб-версии и приложении.

Можно ли писать и запускать код в этом уроке Spring Boot 4 Complete Guide?

Да. Каждый урок Spring Boot 4 Complete Guide включает встроенный редактор кода, поэтому ты пишешь и запускаешь реальный код прямо в браузере и получаешь моментальную обратную связь от AI — локальная установка не требуется.

Все уроки этого курса

  1. Создание REST-контроллеров
  2. Обработка HTTP-запросов и ответов
  3. Проверка входных данных и обработка ошибок
  4. Документирование REST-программных интерфейсов с OpenAPI и Swagger
← Назад к Spring Boot 4 Complete Guide