Java developer blog

How to test a blog for GitHub Pages locally

Overview In the post, we are going to discuss how to test a blog on GitHub Pages locally. Test blog locally In my opinion, it is better to test a blog locally before publishing when you configur...

How to create a modern blog on GitHub Pages

Overview In the post, we are going to discuss how to create a modern blog on GitHub Pages with pageable, tags, the ability to search posts and subscribe to new posts as well. Create a modern blog...

How to set up local or global git proxy

Overview In the post, we are going to describe how to set up a local or global git proxy. Global proxy set up You could either use the following command to set up a global git proxy: 1 git conf...

How to trace http requests with the help of spring boot actuator

Overview In the post, we are going to trace http requests with the help of a spring boot actuator. Tracing http requests with the help of spring boot actuator Firstly, add spring-boot-starter-ac...

How to handle POST request failure

Overview We use a POST request to create an object via REST API. POST request is neither safe nor idempotent. For example, it may fail due to client timeout or an internal server error. It is th...

How to use @Transactional with multiple databases and Spring Boot

Overview Sometimes you may need to use multiple databases in a Spring Boot application. You could read about how to set up multiple databases in a Spring Boot application in the previous post. I...

My favorite IntelliJ IDEA plugins

Overview In the post, I am going to review my favorite IntelliJ IDEA plugins. IntelliJ IDEA plugins Git Flow Integration. It helps you to follow the Git Flow paradigm in the IDE. ...

How to create a scheduled method with spring boot

Overview Sometimes you need to create a method that will be called many times in the future. We usually call such a method as a scheduled method. In the post, we are going to discuss how to creat...

How to call a procedure in a database with spring boot

Overview Sometimes you need to call a procedure in a database. In the post, we are going to discuss how to call a procedure in a database with spring jdbc template. Call a procedure in a database...

How to show SQL statements and parameters with Hibernate

Overview Sometimes you may want to debug your SQL queries that are generated by Hibernate. In the post, we are going to discuss how to show SQL statements and parameters with Hibernate. Enable ab...