CRUD APIs using Spring Boot

All Java Topics
Last updated: May 25, 2026
Author: ManaCoding Team

CRUD APIs in Spring Boot allow you to Create, Read, Update, and Delete data using REST endpoints. It typically uses Controller, Service, and Repository layers with Spring Data JPA.

📝Syntax
@RestController
@RequestMapping("/api/users")
class UserController {
}
💻Example Program
import org.springframework.web.bind.annotation.*;
import java.util.*;

@RestController
@RequestMapping("/api/users")
class UserController {

  private List<String> users = new ArrayList<>(Arrays.asList("John", "Alex"));

  // READ ALL
  @GetMapping
  public List<String> getAllUsers() {
    return users;
  }

  // READ BY ID
  @GetMapping("/{id}")
  public String getUser(@PathVariable int id) {
    return users.get(id);
  }

  // CREATE
  @PostMapping
  public String createUser(@RequestBody String user) {
    users.add(user);
    return "User Created";
  }

  // UPDATE
  @PutMapping("/{id}")
  public String updateUser(@PathVariable int id, @RequestBody String user) {
    users.set(id, user);
    return "User Updated";
  }

  // DELETE
  @DeleteMapping("/{id}")
  public String deleteUser(@PathVariable int id) {
    users.remove(id);
    return "User Deleted";
  }
}

// Output examples:
// GET    /api/users
// POST   /api/users
// PUT    /api/users/1
// DELETE /api/users/1
💡 What is CRUD?
  • 1 Create – add new data
  • 2 Read – retrieve data
  • 3 Update – modify data
  • 4 Delete – remove data
💡 Spring Boot CRUD Flow
  • 1 Client sends HTTP request.
  • 2 Controller handles request.
  • 3 Service processes logic.
  • 4 Repository interacts with database.
💡 HTTP Methods Used
  • 1 POST – Create
  • 2 GET – Read
  • 3 PUT – Update
  • 4 DELETE – Delete
💡 Why CRUD APIs?
  • 1 Core of backend development.
  • 2 Used in all web systems.
  • 3 Easy integration with frontend.
  • 4 Standard REST practice.
💡 Real-world use cases
  • 1 Used in web applications backend.
  • 2 Used in mobile app APIs.
  • 3 Used in microservices systems.
  • 4 Used in enterprise applications.
  • 5 SaaS products use CRUD APIs using Spring Boot in services, dashboards, background jobs, and API workflows.
  • 6 ERP and banking systems apply CRUD APIs using Spring Boot with validation, logging, review, and rollback plans.
  • 7 E-commerce and healthcare platforms use CRUD APIs using Spring Boot carefully because reliability and data correctness matter.
💡 Internal working
  • 1 A Java program first evaluates the surrounding context, then applies the CRUD APIs using Spring Boot rules to the current data.
  • 2 The important mental model is input, transformation, result, and failure path.
  • 3 In production, the same flow usually sits inside a larger layer such as a controller, service, repository, job, or UI component.
💡 Performance considerations
  • 1 Choose the simplest implementation first, then measure real workloads.
  • 2 Watch for repeated work inside loops, unnecessary allocations, and slow I/O in hot paths.
  • 3 Prefer clear data structures and stable APIs before micro-optimizing syntax.
💡 Security considerations
  • 1 Treat external input as untrusted until it is validated.
  • 2 Avoid hardcoded secrets and never print sensitive values in examples or logs.
  • 3 Use established libraries for authentication, encryption, parsing, and database access.
💡 Common mistakes
  • 1 Not validating input data.
  • 2 Using wrong HTTP methods.
  • 3 Skipping service layer.
  • 4 Hardcoding data instead of database integration.
  • 5 Skipping the small working example before adding framework code.
  • 6 Ignoring null, empty, duplicate, and boundary inputs.
  • 7 Mixing business logic, input handling, and output formatting in one place.
  • 8 Using broad error handling that hides the real failure.
  • 9 Forgetting to test the behavior after refactoring.
  • 10 Adding clever code that future maintainers will struggle to read.
💡 Professional best practices
  • 1 Use Service layer for business logic.
  • 2 Use Spring Data JPA for database operations.
  • 3 Validate request body.
  • 4 Return proper HTTP status codes.
  • 5 Start with clear requirements and one minimal working example.
  • 6 Use meaningful names that explain business intent.
  • 7 Keep examples small enough to debug line by line.
  • 8 Validate input at every trust boundary.
  • 9 Handle errors explicitly and preserve useful context.
  • 10 Prefer simple control flow over deeply nested logic.
  • 11 Separate domain logic from I/O and framework code.
  • 12 Write tests for normal, boundary, and failure cases.
  • 13 Review security assumptions before production use.
  • 14 Measure performance before optimizing.
  • 15 Document non-obvious decisions close to the code or in project notes.
  • 16 Use official documentation when behavior is version-specific.
  • 17 Keep dependencies current and remove unused code.
  • 18 Avoid hardcoded secrets, credentials, and environment-specific paths.
  • 19 Log operational events without exposing sensitive data.
  • 20 Design examples so learners can safely modify and rerun them.
💡 Coding exercises
  • 1 Beginner: rewrite the example with different names and values.
  • 2 Intermediate: add validation and handle one expected failure case.
  • 3 Advanced: place CRUD APIs using Spring Boot inside a small service-style design with tests.
💡 Mini project
  • 1 Build a small Java console feature that demonstrates CRUD APIs using Spring Boot.
  • 2 Accept input, process it with the concept, print a clear result, and handle invalid input.
  • 3 Add a README note explaining the design choice and two edge cases you tested.
💡 Troubleshooting
  • 1 If the program does not compile, check spelling, imports, braces, and file/class names first.
  • 2 If output is unexpected, print intermediate values and verify each branch of the logic.
  • 3 If the design feels complex, reduce it to the smallest working example and add pieces back one at a time.
💡 Next steps
  • 1 Practice CRUD APIs using Spring Boot with a second example from a business domain such as inventory, payroll, banking, or e-commerce.
  • 2 Review related Java topics that cover data flow, error handling, testing, and clean design.
  • 3 Compare your solution with official documentation and simplify anything you cannot explain clearly.
Quick Summary
  • CRUD APIs handle basic data operations.
  • Spring Boot simplifies REST CRUD development.
  • Uses Controller-Service-Repository structure.
  • Follows standard HTTP methods.
FAQs
Is CRUD APIs using Spring Boot hard to learn?
It is manageable when you start with a small Java example, run it, and change one thing at a time.
Where is CRUD APIs using Spring Boot used in real projects?
It is commonly used in backend services, SaaS workflows, enterprise systems, APIs, and automation scripts when the topic fits the problem.
Should beginners memorize CRUD APIs using Spring Boot syntax?
No. Beginners should understand the behavior, run examples, and then memorize only the patterns they use often.
How do I practice CRUD APIs using Spring Boot?
Create a small example, add validation, test edge cases, and explain the solution without reading the code.
What is the biggest mistake with CRUD APIs using Spring Boot?
The biggest mistake is copying code without understanding the input, output, and failure path.
🎯Interview Questions
Q1. What is CRUD in REST API?
Answer: Create, Read, Update, and Delete operations on data.
Q2. Which annotation is used for REST controller?
Answer: @RestController.
Q3. Which method is used to update data?
Answer: PUT method.
Q4. What is used for reading data?
Answer: GET method.
Q5. Why use CRUD APIs?
Answer: To manage data operations in applications.
Q6. What is CRUD APIs using Spring Boot?
Answer: CRUD APIs using Spring Boot is a Java concept used for web-related work. A strong answer explains its purpose, basic behavior, and one realistic use case.
Q7. When should you use CRUD APIs using Spring Boot?
Answer: Use it when it makes the solution clearer, safer, or easier to maintain than a simpler alternative.
Q8. What mistakes should be avoided with CRUD APIs using Spring Boot?
Answer: Trusting client input without server validation. Ignoring loading, empty, and error states.
Q9. How do you debug problems with CRUD APIs using Spring Boot?
Answer: Reduce the code to a minimal example, inspect inputs and outputs, then add logging or tests around the failing path.
Q10. How does CRUD APIs using Spring Boot affect maintainability?
Answer: It improves maintainability when responsibilities are clear, names are meaningful, and edge cases are tested.
Q11. How would you use CRUD APIs using Spring Boot in an enterprise project?
Answer: Place it behind a clear service, validate inputs, handle errors, log useful context, and cover the behavior with tests.
Q12. What performance concern should you check with CRUD APIs using Spring Boot?
Answer: Measure realistic data sizes and look for repeated work, blocking I/O, excessive allocation, or unnecessary framework overhead.
Q13. What security concern should you check with CRUD APIs using Spring Boot?
Answer: Validate untrusted input, avoid leaking sensitive data, and use proven libraries for security-sensitive work.
Q14. How do you explain CRUD APIs using Spring Boot to a beginner?
Answer: Start with the problem it solves, show the smallest working example, then explain each line and one common mistake.
Q15. What should you test for CRUD APIs using Spring Boot?
Answer: Test a normal case, an empty or invalid case, a boundary case, and one expected failure path.
Q16. How do you know if CRUD APIs using Spring Boot is the wrong choice?
Answer: It is probably wrong if it adds complexity without improving clarity, safety, reuse, or performance.
Q17. How does CRUD APIs using Spring Boot connect to clean code?
Answer: Clean code uses the concept with clear names, small scopes, predictable behavior, and minimal hidden side effects.
Q18. What documentation is useful for CRUD APIs using Spring Boot?
Answer: Document assumptions, edge cases, version-specific behavior, and any production decision that is not obvious from the code.
Q19. How should code using CRUD APIs using Spring Boot be reviewed?
Answer: Review correctness first, then readability, failure handling, security boundaries, performance, and tests.
Q20. What is a practical exercise for CRUD APIs using Spring Boot?
Answer: Build a small feature, change the inputs, add one validation rule, and explain the result in your own words.
Quiz

Which HTTP method is used for deleting data in CRUD?