System.out.println("Updating entry with id 1");
entry = entryService.findById(1l);
entry.setSubject("Updated entry subject crap");
currentDateTime = new DateTime();
entry.setLastModifiedDate(currentDateTime);
entryService.save(entry);
System.out.println("Entry updated successfully");
entries = entryService.findByCategoryId("Spring");
for (Entry entryTemp: entries) {