Not : ARAŞTIRMA KONUSU kısmı tamamıyla sizleri geliştirmek amaçlı , eklenmiştir , o madde için herhangi bir kod vs örneğine ihtiyaç yoktur.
An example REST API with Spring Boot
- applicationUrl:
http://localhost:8080
- Show Courses :
GET /api/courses
- Show Course :
GET /api/courses/:id
- Create Course :
POST /api/courses
- Update Course :
PUT /api/courses/:id
- Delete Course :
DELETE /api/courses/:id
- Show Instructors :
GET /api/instructors
- Show Instructor :
GET /api/instructors/:id
- Create Instructor :
POST /api/instructors
- Update Instructor :
PUT /api/instructors/:id
- Delete Instructor :
DELETE /api/instructors/:id
- Show Students :
GET /api/students
- Show Student :
GET /api/students/:id
- Create Student :
POST /api/students
- Update Student :
PUT /api/students/:id
- Delete Student :
DELETE /api/students/:id
Furkan Işıtan