java micro-service backend

Initial Rest API

Create a simple Rest API within a MVC Framework of your choice.

โฑ๏ธ Time Breakdown

๐Ÿ“‹
Planning
~1 hours
๐Ÿ’ป
Coding
~2 hours
๐Ÿงช
Testing
~1 hours

๐Ÿ“Š Difficulty

easy

๐ŸŽ“ Learning Outcomes

  • โ€ข Working with REST APIs
  • โ€ข Managing application state
  • โ€ข Creating responsive layouts

Initial Rest API

Create a simple Rest endpoint that allows GET, PUT, UPDATE, DELETE

Heres your starting point :

@Controller
public class RootController {

  @GetMapping("/hello")
  public String greeting() {
    return "FooBar!";
  }
}
โ˜ฐ

Project Requirements

Progress Tracker 0 of 7 completed

Share Project