#hugo #frontend #blog #tutorial

Create your own blog website using Hugo in less than 1 hour for free

In the technical age, publishing articles online is a great way to express yourself. It can be of any form like tutorial, blogs, reviews, editorials and much more. It is almost defacto to use Medium for blogging now a days. It provides many benefits like : Focus only on content. Formatting is handled by Medium platform SEO (Search Engine Optimization) to promote the article in google search Easy interface to write article in browser itself And many more like support for images, videos and code reference using Gist Then Why should you have your own blog? ...

#backend #java #redis #springboot #development

Using Redis with Spring Boot

Redis is an open source, in-memory data structure store, used as a database, cache and message broker. Here we would use Redis as Message Broker to create messaging layer in our demo finance application. This application consist of multiple micro services which interact with each other. We would create event driven construct, where services would connect to messaging layer and would publish and subscribe events to messaging layer. Auto reloading feature does not work out of the box in Intellij. ...

#backend #java #intellij #springboot #development

Spring Boot Devtools on Intellij

Auto reloading feature does not work out of the box in Intellij. Below are the changes required to make it work correctly. Spring Boot provide niche feature of hot reloading for a Spring Boot application. It recompile your java application as soon as you make a change. But most important aspect is that it only recompile only those files in which changes are made. Thus process take quite a short time compared to complete application build. ...