Overview of the Queue Interface in Java
An overview of the queue interface in java
An overview of the queue interface in java
In this tutorial, I’m going to create a simple WebSocket server with Java EE that I can use Javascript Websocket API to connect and send/receive messages. I’m going to use Eclipse as the IDE. You can try with another IDE/text editor. However, I would recommend you use Eclipse since I didn’t have much luck with … Read more
Recently, I upgraded Elasticsearch from 7.15.2 to 8.0.1. The setup was quick and simple. However, when making a request to save an entity to the database and in turn make an update to elastic, I got this error. The error message is long, however, the main message is this: “unable to parse response body for … Read more
Since I spent countless hours finding the correct setup for Cucumber, TestContainers and Junit5 (Jupiter) for my Spring Boot project, I hope this tutorial can somehow save you time and help you avoid needless pain. Before you begin, I hope you already know what Cucumber, TestContainers, and Junit5 (and of course Spring Boot) are. If … Read more
When you are using *Nix systems, you prefer to start everything from the command line. In my case, I would like to open Intellij from the command line by typing idea following the folder, I want to open just like people do in tutorial videos. In order to do that, you need to find the … Read more
So recently I need to set up a quick project to store the results of my crawler in a database. Previously, I would use JDBC for this job. However, with the recent knowledge of Hibernate, why don’t I give it a go? In this post, I’m going to show you how you can use Hibernate … Read more