Find Files That Have Been Modified Recently in Linux Linux 1. Introduction There are various occasions when we want to search for files that have been changed recently. For example, as a system admin, we’re responsible to maintain and configure computer systems. Sometimes, because we’re dealing with a lot of… Continue Reading linux-recently-changed-files

A Collection of Spring Tutorials Persistence REST Security Series Spring Hibernate JPA I started the REST Security project on GitHub to explore writing an elegant REST Services with the latest and greatest Spring had to offer. That was Spring 3.1 and now Spring 3.2, moving towards Spring 4.0 and 4.1.… Continue Reading this-is-not-your-fathers-spring-a-learning-project

Introduction to EasyMock 1. Introduction In the past, we’ve talked extensively about JMockit and Mockito. In this tutorial, we’ll give an introduction to another mocking tool – EasyMock. 2. Maven Dependencies Before we dive in, let’s add the following dependency to our pom.xml: <dependency> <groupId>org.easymock</groupId> <artifactId>easymock</artifactId> <version>3.5.1</version> <scope>test</scope> </dependency> The… Continue Reading easymock