Below you will find pages that utilize the taxonomy term “Controller”
Posts
Go Microservice Part V - Controller
In the previous blog post, Go MVC Part V - Service we have developed a Contact Service which interacts with the Domain object and return the Model to the calling function.
Let’s start with developing Controller which will consume the response from the Contact Service and present it to the presentation layer(View in MVC).
Controller Model contains domain objects as well the information retrieval mechanical from the database. Service has the Business Logic.
read more