Here is a little snippet on how to get the contents of a resource file. String filePath = this.getClass().getClassLoader().getResource(“folder/file.txt”).getFile(); String fileContent = new String(Files.readAllBytes(Paths.get(filePath)), StandardCharsets.UTF_8);…
Here are some notes from creating a simple Java Client to access a REST endpoint behind CAS authentication. Resourcs for enabling CAS Rest Access: CAS…
This article is pretty cool. I found the benefits of learning described here to match my own experiences. Here’s my summary: A Learning Culture is…
I’ve recently become aware of some recent complaints about the agile methodology and as I’ve thought about these complaints it seems to me that the…
Summary: What classes to extend in order to make a custom spEL expression for validating with Spring Security 3.1 The other day I found that…