Course-API is a RESTful web service built with the spring framework.
This web service can be run without a container, and executed as a jar file in the enviornment of your choice.
You can download this web service as a .rar, by heading to the releases tab.
Alternatively, you can package it yourself using maven. To install using maven, navigate to the installed directory and run,
mvn clean install
I will be using Postman in these examples, but any tool for simulating HTTP requests will work!
In this REST API, topics are mapped to courses in a many to one relationship. (one topic can have many courses)
Example of entering a Topic into our database Example of entering a Course into our database (Remember, Many to One!)
Example of updating a course in our database
Example of retrieving information about a single topic in our database Example of retrieving information about ALL topic in our database