Optimizing Spring Integration Tests 1. Introduction In this article, we’ll have a holistic discussion about integration tests using Spring and how to optimize them. First, we’ll briefly discuss the importance of integration tests and their place in modern Software focusing on the Spring ecosystem. Later, we’ll cover multiple scenarios, focusing… Continue Reading spring-tests

FileNotFoundException in Java 1. Introduction In this article, we’re going to talk about a very common exception in Java – the FileNotFoundException. We’ll cover the cases when it can occur, possible ways of treating it and some examples. **2. When Is The Exception Thrown? As indicated on Java’s API documentation,… Continue Reading java-filenotfound-exception

Spring WebSockets: Build an User Chat 1. Introduction In this tutorial, we’ll describe how to use Spring WebSockets to send STOMP messages to a single user. That’s important because we sometimes don’t want to broadcast every message to every user. Besides that, we’ll demonstrate how to send these messages in a… Continue Reading spring-websockets-send-message-to-user