This weekend, I decided to build a sample Spring-Boot application and learn development concepts, principles, and specifically to see how Test Driven Development can be achieved in Spring-Boot by doing some actual work.
Why Testing? Testing in necessary in any field, because human beings are very likely to make mistakes anytime. Therefore, we need to check and verify that our work is completed correctly. So why testing in software is important explained below.
Log & Go This weekend, I decided to build a logger library and publish this in my GitHub account, for people to use, also for fun :) and broaden my perspective and knowledge in GoLang domain.
The logger utility that is implemented can be found in this repository.
I will be giving the details about how to use this utility to log every event occurred in your applications.
Steps Step #1 go get github.
Parse & Go While we develop our applications, we need to have changeable values for our application to ease the management. For this purpose, we use configurations.
These configurations may be defined on your application directory path, or in a remote config server. These configurations also can be in many formats like JSON, YAML, PROPERTIES, ENV etc. This module enables you to read your configurations in your local or in your remote config server.