learning-project-01 / bookstore-app

3 stars 2 forks source link

design book api controller and service #3

Closed nginx500 closed 10 months ago

nginx500 commented 10 months ago

create controller and service layer for below model class. create and list functionality is enough.

class Book{
  Long id;
  String name;
  Float price;
}