Recent posts

Git Revert

less than 1 minute read

git revert is useful when you want to undo the changes made by a specific commit without rewriting history

Git Cherry Pick

less than 1 minute read

Git cherry-pick is a command used to apply a specific commit from one branch to another. It’s useful when you want to pick only certain commits from one bra...

ssl Security Certificate Issue

1 minute read

Solution for the issue on Local microservice testing Caused by: javax.net.ssl.SSLHandshakeException: PKIX path building failed: sun.security.provider.certpat...

Java Compilation

less than 1 minute read

```shell git clone https://github.com/AdoptOpenJDK/jitwatch.git

Spring Actuator

1 minute read

## Actuator Settings management.endpoints.web.exposure.include=health,info, metrics management.endpoint.health.show-details=always management.endpoint.health...