Web Analytics
Articles: RoshanAdhikary -->

Posts

Spring Boot Integration Testing with MockMvc

Spring Boot Integration Testing with MockMvc

In this piece, we will build a REST-ful API using Spring Boot and Spring MVC, then perform integration testing by making requests…
Build a Markdown-based Blog with Spring Boot - Part 6

Build a Markdown-based Blog with Spring Boot - Part 6

This will be the final part of this series. For previous parts, please check: Part 1 | Part 2 | Part 3 | Part 4 | Part 5 Re…
Build a Markdown-based Blog with Spring Boot - Part 5

Build a Markdown-based Blog with Spring Boot - Part 5

Welcome to another instalment of the "Build a Markdown Blog with Spring Boot" series. You can find the previous parts…
Build a Markdown-based Blog with Spring Boot - Part 4

Build a Markdown-based Blog with Spring Boot - Part 4

Before continuing with part 4 of this series, make sure you have checked out the previous three parts as well:  Part 1 | Part 2 …
Build a Markdown-based Blog with Spring Boot - Part 3

Build a Markdown-based Blog with Spring Boot - Part 3

This piece is a part of a series of blog posts regarding this topic. If you haven't read the first two, please do so: Part 1 …
Build a Markdown-based Blog with Spring Boot - Part 2

Build a Markdown-based Blog with Spring Boot - Part 2

If you haven't read the first part , please do so. At the end of the first part, we had defined the POJO classes for the two …
Build a Markdown-based Blog with Spring Boot - Part 1

Build a Markdown-based Blog with Spring Boot - Part 1

In this piece, we will be building a personal blog containing articles written in Markdown. We will use Spring Boot to develop th…
Containerize a Java EE web application with MySQL, phpmyadmin, and Tomcat services

Containerize a Java EE web application with MySQL, phpmyadmin, and Tomcat services

In this article, we will create a Docker Compose  file with three services: MySQL , phpmyadmin , and Tomcat . Compose allows us t…
Forward your FreeDNS custom domain to your GitHub Pages site

Forward your FreeDNS custom domain to your GitHub Pages site

You can forward all requests to your custom domain (e.g., tom.com) to your GitHub pages site (e.g., tom.github.io). I will detail…
Create a simple server application with Node.js and Express

Create a simple server application with Node.js and Express

So you keep hearing about Node.js and how easy it is to build server-side applications and web services with it, and you want to…
Monitor your Windows Laptop's Battery

Monitor your Windows Laptop's Battery

Schedule toast notifications in your Windows regarding battery and charge status using  a minimal Python script. You like your …
HashMap Class in Java

HashMap Class in Java

What is HashMap in Java? Java's HashMap class is a Hash Table implementation of Map interface. It stores data in key-valu…