Using Json for Google domain wide delegation was one of the challenging tasks for me. The reason being the Google’s official documentation, as it uses p12 file to access service account. After digging into a couple of recent versions of GoogleCredentials API, I figured out a method that allows us to access G-suite using service […]
Hot Swap in Spring Boot Application – Live Reload
Are you one of the legacy Spring developers? Are you annoyed with the restarting of Spring Boot application every single time you make a small change in your java classes? I feel your pain bruh 😀 , but not anymore! 😉 Here is how to hot swap in spring boot application! Spring Boot has released […]
Add Custom Fonts to Jasper Report in Java
Sometimes its quite easy to find a library or a solution and implement it just by following a couple of steps. But sometimes it can be painful. Very painful. That’s something I faced recently. I had to add custom fonts to jasper report in a Java project. Sadly the JasperReport community wasn’t too helpful as […]
WebSocket in Spring Boot / Spring Framework
Lately I got a chance to get my hands dirty with WebSocket in Spring Boot. The idea was to broadcast the progress of an Async task that took a while to complete its operation. At first, it felt like a nightmare to me (I over-reacted, yes) but by the time I completed my research of […]