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]
Abstract Factory Pattern
In Creational pattern, abstract factory pattern is at higher lever than the other pattern such as factory method pattern, … It is always used in our system, because it makes our system consistency, and loose coupling between our system and concrete something.
[Read More]
How to use Processor in Java's Reactor
In this article, we will go through processors in reactor of java. In Reactive programming, or especially Spring webflux, to use Processor is important to do with it.
[Read More]