0Pricing
Java Academy · Lesson

Design

Plan the structure of a REST API: endpoints, data models, and flow.

Design is a free Java Academy lesson on CoddyKit — lesson 1 of 4. You can read the complete lesson below for free — then practise it hands-on in the browser with a built-in code editor and a 24/7 AI tutor. It is part of the Java Academy learning path, one of 4 lessons in the course, and your progress syncs across the web and the CoddyKit app.

Intro

Goal: design a small REST API for managing tasks. We define endpoints, data models, and flow.

Endpoints

  • GET /tasks: list all tasks
  • POST /tasks: create task
  • GET /tasks/{id}: get one task
  • PUT /tasks/{id}: update task
  • DELETE /tasks/{id}: delete task

Code: Task model

The Task model has id, title, and done fields.

public class Task {
  private Long id;
  private String title;
  private boolean done;
  // getters/setters omitted
}

Flow

Flow: controller handles HTTP → service does business logic → repository saves data.

Code: Controller outline

Controller outlines endpoints; later we connect service/repository.

import org.springframework.web.bind.annotation.*;@RestController
@RequestMapping("/tasks")
public class TaskController {
  @GetMapping
  public String all() { return "list tasks"; }
  @PostMapping
  public String create() { return "create task"; }
}

Good practices

Good practices: use nouns in URIs, proper HTTP verbs, and return JSON bodies.

HTTP verb check

Quick check: Which HTTP verb is typically used to create a new resource?

Recap

Recap: Designed task API: endpoints, model, flow, and good practices.

Frequently asked questions

Is the “Design” lesson free?

Yes — the full text of “Design” is free to read here on the web, and the Java Academy course includes 4 lessons in total. To practise it interactively (a built-in code editor and a 24/7 AI tutor) and unlock the rest of the Java Academy course, upgrade to CoddyKit PRO.

What will I learn in “Design”?

Plan the structure of a REST API: endpoints, data models, and flow. You practise Java Academy with hands-on code you run directly in the browser, and a 24/7 AI tutor answers your questions as you work through the lesson.

Do I need any experience to start Java Academy?

No prior experience is required. Java Academy on CoddyKit is structured for beginners through advanced learners; this is — lesson 1 of 4, so you can start here or from the beginning and move at your own pace.

How long does the “Design” lesson take?

Most CoddyKit lessons take about 5–10 minutes. Each one is bite-sized and interactive, so you make steady progress and pick up exactly where you left off across the web and the app.

Can I write and run code in this Java Academy lesson?

Yes. Every Java Academy lesson includes a built-in code editor, so you write and run real code right in your browser and get instant AI feedback — no local setup required.

All lessons in this course

  1. Design
  2. Implementation
  3. Tests & Extensions
  4. Final Recap & Review
← Back to Java Academy