In this article, we will go with Clean code for method. It’s very useful to apply knowledges into our projects. It makes our code easily maintainable, readable, …
[Read More]
Understanding about Log4j 2.x framework
In Java web applications, logging is an important feature that we need to understand and use frequently. Because logging will help us easy to detect bug like at runtime, we do not use debug mode, so, defenitely, we have to use logging functionality to play.
[Read More]
Some shortcut keys in Intellij IDEA
In oder to improve performance when coding in Intellij IDEA, we need to know more about shortcut keys. So, in this article, we will learn something about it.
[Read More]
Creating project with Spring Webflux and MongoDB
Normally, we will use Spring MVC for our project, but Spring webflux was born in 2017, it makes our web application stronger and more elastic. It takes advantage of asynchronous property, non-blocking IO to reduce the number of threads when receiving multiple requests.
[Read More]
Create Java application project with Hibernate
In this article, we will learn how to configure Hibernate in our Java project with Maven. There are some problems when doing with Hibernate, and we will solve them to know more about configuration in Hibernate.
[Read More]