Author name: Shrikant Piprode

Candy Crush Game

Sweet Fun: Developing a Candy Crush Game with Java and LibGDX Introduction Candy Crush is a highly addictive puzzle game that has gained worldwide popularity. With its colorful graphics, simple gameplay mechanics, and challenging levels, it has become a hit among players of all ages. Have you ever wondered how such games are developed? In …

Candy Crush Game Read More »

Minecraft Game Java

Mastering Minecraft Game Development with Java Introduction Minecraft is a globally popular sandbox-style game that allows players to create and explore virtual worlds made up of blocks. Developed by Mojang Studios, Minecraft has captured the imagination of millions of players worldwide with its open-ended gameplay and endless possibilities for creativity. One of the key technologies …

Minecraft Game Java Read More »

Spring Boot Docker Image

To create a Docker image for a Spring Boot application, you first need to create a Dockerfile for the application. The Dockerfile contains the instructions for building the Docker image. Here is an example Dockerfile for a Spring Boot car application: In the Dockerfile above, we start with the openjdk:8-jdk-alpine image, which contains the OpenJDK …

Spring Boot Docker Image Read More »

Springboot Hystrix

Hystrix is a library for dealing with faults and latency in a distributed system. It provides a mechanism for introducing latency tolerance and failover logic into your microservices. To add Hystrix to your Spring Boot application, you need to add the following dependency to your pom.xml file: Next, you need to create a Hystrix command …

Springboot Hystrix Read More »

Spring Cloud Sleuth

Spring Cloud Sleuth is a distributed tracing framework that allows you to trace the flow of requests through a microservice architecture. Zipkin is a popular open-source tool for storing and visualizing these traces. To add Spring Cloud Sleuth to your Spring Boot application, add the following dependency to your pom.xml file: To add the Zipkin …

Spring Cloud Sleuth Read More »

Scroll to Top