Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 

README.md

Day 48 - REST APIs with Java

📚 What You'll Learn Today

  • What is REST?
  • REST principles
  • JAX-RS annotations
  • HTTP methods (GET, POST, PUT, DELETE)

🎯 Key Concepts

  • REST: Representational State Transfer
  • JAX-RS: Java API for RESTful Web Services
  • Resource: Object or data that can be accessed
  • HTTP Methods: GET, POST, PUT, DELETE

📁 Files in This Day

  1. RESTAPIDemo.java - Example of REST API

🚀 How to Run

  1. Deploy to application server
  2. Test with REST client

💡 Exercises

  1. Create REST endpoints
  2. Handle different HTTP methods

Next Day: Day 49 - Design Patterns